blob: 5b045ab8518f8fbd0e12f5f2cdc5d87875ea0d34 [file] [log] [blame]
// @dart = 2.9
import "implicit_new.dart" as prefix;
class Foo {
operator +(other) => null;
}
class Bar {
Bar.named();
operator +(other) => null;
}
testNSM() {}
f(x) => x;
class IndexTester {
operator [](_) => null;
void operator []=(_a, _b) {}
}
main() {}