forked from JavaTX/JavaCompilerCore
10 lines
124 B
Plaintext
10 lines
124 B
Plaintext
|
class Gen<X extends Integer> {
|
||
|
public doSomething(X num){
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class Test{
|
||
|
public void test(x){
|
||
|
x.doSomething("");
|
||
|
}
|
||
|
}
|