JavaPatternMatching/bin/mycompiler/test/notUsedAnymore/TestAbstractInferenceTest.jav
2013-10-18 13:33:46 +02:00

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;
}
}