Skip to content

Commit b83e250

Browse files
committed
[TypeChecker] NFC: Make test-case for rdar://19737632 more complex
Test-case as-is is producing conversion failure on Apple Silicon Resolves: rdar://79414045
1 parent 9b6e470 commit b83e250

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

validation-test/Sema/type_checker_perf/slow/rdar19737632.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ let a = "a"
55
let b = "b"
66
let c = 42
77
let d = 0.0
8+
let e: Float = 1.0
89

9-
_ = "a=" + a + ";b=" + b + ";c=" + c + ";d=" + d
10+
_ = "a=" + a + ";b=" + b + ";c=" + c + ";d=" + d + ";e=" + e
1011
// expected-error@-1 {{reasonable time}}

0 commit comments

Comments
 (0)