mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
11 lines
210 B
Java
11 lines
210 B
Java
// "Annotate method 'test()' as '@NonNls'" "true-preview"
|
|
class Foo {
|
|
Foo test(String s) {
|
|
return this;
|
|
}
|
|
|
|
public boolean doTest() {
|
|
System.out.println((test("Hel<caret>lo")).toString());
|
|
}
|
|
}
|