Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/defaultAnnotationParamValue/before3.java
2016-11-21 17:09:17 +01:00

12 lines
165 B
Java

// "Remove redundant parameter" "true"
@interface Anno {
String foo() default "hello world";
}
@Anno(foo = "hello " +<caret>
"world")
class Foo {
}