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