blob: ae13f52cb756b8a3bb7527233f80ba1a5ac28b0e [file] [log] [blame]
package test0038;
public class X<T> {
T x;
T get(){
X<T> s= this;
return x;
}
void set(T o1){
x = o1;
}
}