summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/gotosuper/Lambda.java
blob: 26c024317a1d0514c9041b5d6d695622e0de9af4 (plain)
1
2
3
4
5
6
7
8
9
interface I {
  void run();
}

class Foo {
  {
    I i = ()<caret> -> {};
  }
}