JavaCompilerCore/examples/hoti/BoundedClassPara.jav

10 lines
124 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
class Gen<X extends Integer> {
public doSomething(X num){
}
}
class Test{
public void test(x){
x.doSomething("");
}
}