summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/afterParameterNameFirstSuggestion.java
blob: 62e163e8cdce714816221051f8bb61b75e18ebc6 (plain)
1
2
3
4
5
6
7
8
9
// "Create Method 'test2'" "true"
class Foo {
  static String FOO_BAR = "Bar"; 
  void test1() { test2(FOO_BAR); }

    private void test2(String fooBar) {
        
    }
}