blob: 3b55c21d2a9769b5c8ed613a850d586b94bfff45 [file] [log] [blame]
public class Test<<caret>T, U> {}
class Foo {
void test() {
Test<String, Long> test = new Test<>();
Test<String, Long> test2 = new Test<String, Long>();
}
}