blob: b0e45ea85018aacf3ec4fa94edd8fe63ccd7493f [file] [log] [blame]
package com.puppycrawl.tools.checkstyle.checks.descendanttoken;
public class InputDescendantTokenIllegalTokens
{
public void methodWithPreviouslyIllegalTokens()
{
int i = 0;
switch (i)
{
default:
i--;
i++;
break;
}
}
public native void nativeMethod();
}