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