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