Avatar
omochimetaru 4/20/2020 3:35 PM
@swift-5.2.5 struct A { init() { print("A.init") } } struct S { let a: A = A() init() { print("S.init") } } S()