mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 01:43:57 +07:00
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;
|
|
}
|
|
} |