mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 04:22:42 +07:00
GitOrigin-RevId: 3e2322ff7ee747ed016423835682052acb966a67
5 lines
126 B
Java
5 lines
126 B
Java
class LambdaExpression {
|
|
public void foo() {
|
|
new ArrayList<String>().forEach((x) -> System.out.<caret>println(x));
|
|
}
|
|
} |