blob: c3f5004f4e3a34a8c96d080b9383a25e410b5561 [file] [log] [blame]
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() {}