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