Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/beforeParameterNameFirstSuggestion.java
2014-12-06 12:06:31 +03:00

5 lines
124 B
Java

// "Create method 'test2'" "true"
class Foo {
static String FOO_BAR = "Bar";
void test1() { tes<caret>t2(FOO_BAR); }
}