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