mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
255 B
Java
14 lines
255 B
Java
import org.jetbrains.annotations.NonNls;
|
|
|
|
// "Annotate method 'test()' as '@NonNls'" "true-preview"
|
|
class Foo {
|
|
@NonNls
|
|
Foo test(String s) {
|
|
return this;
|
|
}
|
|
|
|
public boolean doTest() {
|
|
System.out.println((test("Hello")).toString());
|
|
}
|
|
}
|