JavaCompilerCore/test/parser/PrePostOperationTest.jav
2017-09-25 08:17:36 +02:00

10 lines
113 B
Java

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