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