// "Fold expression into 'String.join'" "true-preview" class Test { String foo(String a, String b, String c) { String s = a + '_' + b + '_' + c ; return s; } }