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