blob: 30b0727e9f9c3207d7bc1dd03a694db93793bb60 [file] [log] [blame]
public class Test<U> {}
class Foo {
void test() {
Test<Long> test = new Test<>();
Test<Long> test2 = new Test<Long>();
}
}