Skip to content

Commit 9649e74

Browse files
authored
Merge pull request swiftlang#40335 from xedin/atmpt-3-fix-flaky-test
[TypeChecker] NFC: Scope down per test-case for rdar://74035425
2 parents 9180e01 + 053c874 commit 9649e74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

validation-test/Sema/type_checker_perf/fast/rdar74035425.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ struct Value {
77
}
88

99
func test(values: [[Value]]) -> String {
10-
"[" + "" + values.map({ "[" + $0.map({ $0.debugDescription }).joined(separator: ", ") + "]" }).joined(separator: ", ") + "]"
10+
values.map({ "[" + $0.map({ $0.debugDescription }).joined(separator: ", ") + "]" }).joined(separator: ", ")
1111
}

0 commit comments

Comments
 (0)