blob: 72ae030f10e7050e01b8fe230c758f2d603a7b85 [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() {}