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

11 lines
138 B
Java

public class SwitchTest
{
void testMethod()
{
switch(i)
{
case i:
break;
}
}
}