forked from JavaTX/JavaCompilerCore
20 lines
192 B
Java
Executable File
20 lines
192 B
Java
Executable File
|
|
class TestAbstractInferenceTest<A> {
|
|
|
|
public foo(a, b) {
|
|
c;
|
|
d;
|
|
d = a+ b;
|
|
{
|
|
i;
|
|
i=5;
|
|
}
|
|
{
|
|
i;
|
|
i="abc";
|
|
}
|
|
c = new TestAbstractInferenceTest<String>();
|
|
return a+b;
|
|
}
|
|
|
|
} |