summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/types/methodRefs2lambda/NewRefsInnerClass_after.java
blob: 0d1106d8e4b6fcaa4868d1b7529461bae5896eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class MyTest {
    static class Inner {
        Inner(MyTest mt) {};
    }
  
    interface I {
        Inner m(MyTest receiver);
    }

    static {
        I i1 = (mt) -> new Inner(mt);
    }
}