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