Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/i18n/afterNonNlsChainCallParens.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

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());
}
}