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