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