blob: 08b91cee6a6cfd060a850e4d31ef721294711c60 [file] [log] [blame]
class Foo<T> {
<U> Foo(T t) {}
}
class Test {
public static void main(String[] args) {
Foo<String> c = new <Integer>Foo<<caret>>("");
}
}