blob: ff978cb862232a49b24cbf6e4d7b95f061bd0c74 [file] [log] [blame]
class C {
String m = "";
void set setter(String v) {}
void operator []=(int index, String value) {}
}
extension on C? {
void set setter(String v) {}
void operator []=(int index, String value) {}
}
main() {}
expect(expected, actual) {}