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