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