blob: c6c3ca33c0c5176722ea409073129198aeb69d98 [file] [log] [blame]
class Test<T> {
public T myT;
void foo(T t){}
void bar(){
foo(myT);
}
}