blob: 4868c82111c78faeb7cb2209f2a61cf9c6f0b0be [file] [log] [blame]
// @dart = 2.9
library test;
abstract class I {
void operator []=(int index, dynamic value) {}
}
class C {
operator []=(int index, dynamic value) {}
}
class D extends C implements I {
operator []=(int index, value) {}
}
main() {}