JavaTXCompilerInJavaTX/bin/mycompiler/test/notUsedAnymore/TestAbstractInferenceTest.jav

20 lines
192 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
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;
}
}