JavaCompilerCore/test/parser/SwitchTest.jav

11 lines
138 B
Plaintext
Raw Permalink Normal View History

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