blob: fd59e6ec9e6f2ec4150f8efe9aabeeec8a79c5b1 [file] [log] [blame]
library test;
C c;
abstract class C implements I {}
class I {
bool operator -() => true;
}
main() {}
var x = -c;