blob: b17753d9dd0efc6869b67c67d7db63ddabdbbabf [file] [log] [blame]
class C {
D? f() => new D();
void h() {}
}
class D {
void g() {}
}
main() {}
void test(C x) {}