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