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