mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-24 22:06:25 +07:00
11 lines
182 B
Java
11 lines
182 B
Java
// "Annotate variable 'a' as @NonNls" "true"
|
|
|
|
import org.jetbrains.annotations.NonNls;
|
|
|
|
class Foo {
|
|
public void doTest() {
|
|
@NonNls String a;
|
|
a = new String("test");
|
|
}
|
|
}
|