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