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