summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromMethodRef/afterConstructor.java
blob: 4c5e012f1ea3035bc342758abf1d13bddcb9ebb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// "Create Constructor" "true"
class FooBar {
  FooBar(int i) {
  }

  {
    Runnable r = FooBar::new;
  }

    public FooBar() {
        
    }
}