blob: a59df3481295675fb7d50b1048a53d4b14c82632 [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() {}