JavaTXCompilerInJavaTX/test/parser/PrePostOperationTest.jav

10 lines
113 B
Plaintext
Raw Normal View History

2017-09-25 08:17:36 +02:00
class TestClass
2017-09-23 18:33:48 +02:00
{
void testMethod()
{
2017-09-25 08:17:36 +02:00
//++i;
//i++;
//--i;
//i--;
2017-09-23 18:33:48 +02:00
}
}