forked from JavaTX/JavaCompilerCore
20 lines
192 B
Plaintext
20 lines
192 B
Plaintext
|
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
}
|