aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ValInLambda.java
blob: 7ce1e1b4101b9ef35a88f659c8605b995b6665a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// version 8:
class ValInLambda {
    Runnable foo = (Runnable) () -> {
        final int i = 1;
    };

    public void easyLambda() {
        Runnable foo = (Runnable) () -> {
            final int i = 1;
        };
    }

    public void easyIntersectionLambda() {
        Runnable foo = (Runnable) () -> {
            final int i = 1;
        };
    }
}