JavaCompilerCore/test/parser/PrePostOperationTest.jav

10 lines
112 B
Plaintext
Raw Normal View History

2017-09-23 18:33:48 +02:00
public class TestClass
{
void testMethod()
{
++i;
i++;
--i;
i--;
}
}