blob: 29046d7d2e873c44e8400eaf3cdef6c9d61c0242 [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) {}