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