blob: 285364e8366dbc6e4e00a93809636d38d574f85c [file] [log] [blame]
library test;
C c = new C();
class C {
bool operator -() => true;
}
main() {}
var x = -c;