Files
swift-mirror/validation-test/compiler_crashers/LifetimeChecker-getLivenessAtInst-b7fa36.swift
2025-12-01 09:12:15 +00:00

12 lines
438 B
Swift

// {"kind":"emit-sil","original":"96451f18","signature":"(anonymous namespace)::LifetimeChecker::getLivenessAtInst(swift::SILInstruction*, unsigned int, unsigned int)","signatureAssert":"Assertion failed: (E <= size() && \"Attempted to set out-of-bounds range!\"), function set"}
// RUN: not --crash %target-swift-frontend -emit-sil %s
struct a<b> {
let c: String
let d: b
}
extension a where b == Void {
init() {
d <= ()
}
}