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