mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
197 B
Swift
12 lines
197 B
Swift
// RUN: %target-swift-frontend %s -O -emit-sil
|
|
|
|
// Make sure we are not crashing on this one.
|
|
|
|
var a : [String] = ["foo"]
|
|
|
|
_preconditionFailure("unreachable")
|
|
for i in 0...a.count {
|
|
let x = 0
|
|
}
|
|
|