blob: a93e0d8cf37c62a76644cccf9a59b3283ab65ced [file] [log] [blame]
class A1 {
Object? field;
void method1() {}
}
extension A2 on A1 {
Object? method3() => this.field;
void method2() => this.method1();
void method4(Object? o) {}
}
main() {}