mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 02:50:55 +07:00
10 lines
193 B
Java
10 lines
193 B
Java
import org.jetbrains.annotations.NonNls;
|
|
|
|
// "Annotate variable 'a' as '@NonNls'" "true-preview"
|
|
class Foo {
|
|
public boolean doTest() {
|
|
@NonNls String a;
|
|
return "test".equals(a)
|
|
}
|
|
}
|