blob: f424c02a6c11e0f59ec74f131a0df624a4d07fb6 [file] [log] [blame]
import org.jetbrains.annotations.NonNls;
// "Annotate variable 'a' as @NonNls" "true"
class Foo {
public void doTest() {
@NonNls String a = "test";
}
}