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