blob: 15af75550680205bbe08dba08efeb5c8173f55ff [file] [log] [blame]
class C {
int y = 42;
D? f() => new D();
C h() => this;
}
class D {
D g() => this;
String operator [](String s) {}
}
void test(C x) {}
main() {}