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