mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
223 B
Swift
11 lines
223 B
Swift
// RUN: %target-swift-frontend -emit-silgen %s | %FileCheck %s
|
|
|
|
// CHECK-LABEL: sil shared @_T026closure_inline_initializer3FooV3fooSivfiSiycfU_
|
|
|
|
struct Foo {
|
|
var foo: Int = { 2 }()
|
|
|
|
init(x: Int) {}
|
|
init(y: Int) {}
|
|
}
|