mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
9 lines
188 B
Swift
9 lines
188 B
Swift
// RUN: %target-swift-frontend -emit-sil %s
|
|
|
|
// https://github.com/apple/swift/issues/54666
|
|
// Use-after-free in `SILFunction::print`
|
|
|
|
func outer<C>(_ x: C) {
|
|
func inner<C>(_ x: C) {}
|
|
}
|