mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-30 18:30:05 +07:00
dd689d3a39
GitOrigin-RevId: 6b6405ee4491ad1d58947547c40df6fb2d291ab7
7 lines
179 B
Java
7 lines
179 B
Java
// "Fold expression into 'String.join'" "true-preview"
|
|
class Test {
|
|
String foo(String a, String b, String c) {
|
|
String s = a + <caret>'_' + b + '_' + c ;
|
|
return s;
|
|
}
|
|
} |