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