forked from JavaTX/JavaCompilerCore
21 lines
300 B
Java
Executable File
21 lines
300 B
Java
Executable File
|
|
public class TestAbstractInferenceTest2 {
|
|
|
|
method(Integer a, String s) {
|
|
}
|
|
}
|
|
|
|
class TestAbstractInferenceTest3 extends TestAbstractInferenceTest2 {
|
|
/*
|
|
method(Integer a) {
|
|
c;
|
|
}*/
|
|
method2(String s) {
|
|
c;
|
|
c = new TestAbstractInferenceTest2();
|
|
c.method(2,"abc");
|
|
method(3,"abc");
|
|
}
|
|
|
|
|
|
} |