blob: 4bf62855f7e03eda55e44227bdfc61b6ed49d599 [file] [log] [blame]
public class Test<T> {
public Test(T t){}
void foo(){}
public static void main(T args){
new Test(args).foo();
}
}