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