mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 04:45:04 +07:00
GitOrigin-RevId: e5f895b4d6241fd4a15fa62e2ab764f9a4e3860a
7 lines
107 B
Java
7 lines
107 B
Java
class LambdaExpression {
|
|
Runnable x() {
|
|
return () -> {<caret>
|
|
System.out.println();
|
|
}
|
|
}
|
|
} |