blob: b6763dc9413d2bc15baf1d212a71a4705ccd9d31 [file] [log] [blame]
// 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) {}
}