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