mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
8 lines
147 B
Java
8 lines
147 B
Java
import org.jetbrains.annotations.NonNls;
|
|
|
|
// "Annotate field 'field' as '@NonNls'" "true-preview"
|
|
class Foo {
|
|
@NonNls
|
|
String field = "text";
|
|
}
|