Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0160-sr7958.swift
Brent Royal-Gordon 9ede961daa Correct run line on fixed crasher
Lesson learned: the script is not infallible.
2018-06-14 02:05:28 -07:00

11 lines
203 B
Swift

// RUN: %target-swift-frontend %s -emit-ir
func foo<U>(_ x: U?) {
_ = "\(anyLabelHere: x)"
}
// This one also crashes in a slightly different place
func bar(_ x: Int?) {
_ = "\(anyLabelHere: x)"
}