mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 20:50:54 +07:00
6 lines
182 B
Java
6 lines
182 B
Java
// "Fold expression into Stream chain" "true-preview"
|
|
class Test {
|
|
String foo(int a, int b, int c, int d) {
|
|
return a * 2 + "|" + b * 2 + "|" + c * 2 + "|"<caret> + d * 2;
|
|
}
|
|
} |