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