blob: 2b6326a79e831b5a1e9361b7c22e894b3036e6f5 [file] [log] [blame]
// @dart = 2.9
library test;
class C {
bool operator -() => true;
}
C c = new C();
var x = -c;
main() {}