blob: 1e2d46d989af4f3c8775de146b870fbfd9ab29bd [file] [log] [blame]
interface Foo<T,V> {}
class Bar<T,V> {
Bar(Foo<T,V> foo) {}
}
class Main {
Foo foo;
Bar<String,String> bar = new Bar<String,String>((<caret>foo);
}