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