mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 16:25:33 +07:00
GitOrigin-RevId: ffde5f942ff03a1e9eed6d78b82c8374b02a9936
12 lines
215 B
Java
12 lines
215 B
Java
public class ValueInLambda {
|
|
void test() {
|
|
Fn fn = value -> value;
|
|
Fn fn2 = (value) -> value;
|
|
Fn fn3 = (int value) -> value;
|
|
Fn fn4 = sealed -> sealed;
|
|
}
|
|
|
|
interface Fn {
|
|
int x(int y);
|
|
}
|
|
} |