Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/i18n/beforeNonNlsChainCallParens.java
Tagir Valeev a0f9fd146b [java-i18n] More uniform call-chain support; fixes property test with parentheses
GitOrigin-RevId: 7f91d71dd6e87771165b35a33f322533f64a49ca
2020-09-01 09:28:19 +00:00

11 lines
198 B
Java

// "Annotate method 'test' as @NonNls" "true"
class Foo {
Foo test(String s) {
return this;
}
public boolean doTest() {
System.out.println((test("Hel<caret>lo")).toString());
}
}