FoldExpressionIntoStream, StreamApiMigration: EquivalenceChecker used

This commit is contained in:
Tagir Valeev
2018-07-11 14:43:44 +07:00
parent 4b66e1de3d
commit 625def0299
4 changed files with 5 additions and 6 deletions
@@ -1,6 +1,6 @@
// "Fold expression into 'String.join'" "true"
class Test {
void test(String a, String b, String c, String d) {
String result = a + "," + b + "," + c + ","<caret> + d + ",";
String result = a + "," + b + ((",")) + c + ","<caret> + d + ",";
}
}