forked from JavaTX/JavaCompilerCore
17 lines
206 B
Plaintext
17 lines
206 B
Plaintext
|
public class TestSimpleClassesWithGenericsNegative<T> {
|
||
|
|
||
|
public m(T x) {
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
class A {
|
||
|
|
||
|
public method() {
|
||
|
x;
|
||
|
x= new TestSimpleClassesWithGenerics<Integer>();
|
||
|
return x.m("abc");
|
||
|
}
|
||
|
|
||
|
}
|