JavaTXCompilerInJavaTX/test/parser/PrePostOperationTest.jav
2017-09-23 18:33:48 +02:00

10 lines
112 B
Java

public class TestClass
{
void testMethod()
{
++i;
i++;
--i;
i--;
}
}