blob: e3d90421ceeb0aadc7bcff2e3c143f11a6cf1279 [file] [log] [blame]
library test;
abstract class C implements I {}
class I {
bool operator [](int index) => true;
}
f() {}
main() {}