blob: 4e230dcf5553e000e3507c8e3f45fc4f281c9408 [file] [log] [blame]
public class MyClass<T> {}
class Test {
public static void main(String[] args) {
MyClass<Integer> anon = new MyClass<Integer>();
}
}