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