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