mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Otherwise, we don't want them to be linkonce_odr at the LLVM level to avoid unnecessary link-time overhead.
11 lines
224 B
Swift
11 lines
224 B
Swift
// RUN: %target-swift-frontend -emit-silgen %s | %FileCheck %s
|
|
|
|
// CHECK-LABEL: sil private @_T026closure_inline_initializer3FooV3fooSivfiSiycfU_
|
|
|
|
struct Foo {
|
|
var foo: Int = { 2 }()
|
|
|
|
init(x: Int) {}
|
|
init(y: Int) {}
|
|
}
|