mirror of
https://github.com/apple/swift.git
synced 2026-06-27 12:25:55 +02:00
d981bb1d96
Mangle escapeness as part of the type. Part of: SR-5441 rdar://36116691
11 lines
247 B
Swift
11 lines
247 B
Swift
// RUN: %target-swift-frontend -emit-silgen -enable-sil-ownership %s | %FileCheck %s
|
|
|
|
// CHECK-LABEL: sil private @$S26closure_inline_initializer3FooV3fooSivpfiSiyXEfU_
|
|
|
|
struct Foo {
|
|
var foo: Int = { 2 }()
|
|
|
|
init(x: Int) {}
|
|
init(y: Int) {}
|
|
}
|