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