blob: b64676f660f238a99a36f169fe5320c5a9dbece1 [file] [log] [blame]
class FooBar<T> {
FooBar<List<T>> foo() {
return null;
}
FooBar<T> bar() {return this;}
void f(FooBar<String> fb) {
foo().bar().toSt<caret>ring();
}
}