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