blob: c9253bbc824929eef4eef11685720d0370dcb8d4 [file] [log] [blame]
class C<T> {
foo() => new D<C<T>>();
}
class D<T> {
bar() => T;
}
main() {
print(new C<int>().foo().bar());
}