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