blob: 2230329c9283d6fe92ea95bf52fafd2c31e99aa3 [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;
}
}