JavaCompilerCore/test/parser/SwitchTest.jav

11 lines
138 B
Plaintext
Raw Normal View History

2017-09-23 16:33:48 +00:00
public class SwitchTest
{
void testMethod()
{
switch(i)
{
case i:
break;
}
}
}