// RUN: %target-swift-emit-silgen %s -target %target-swift-5.9-abi-triple | %FileCheck %s class C { var values: (repeat each T) // CHECK-LABEL: sil hidden [exact_self_class] [ossa] @$s32variadic_generic_allocating_init1CC9fromTupleACyxxQp_QPGxxQp_t_tcfC : $@convention(method) (@pack_owned Pack{repeat each T}, @thick C.Type) -> @owned C { // CHECK: bb0(%0 : $*Pack{repeat each T}, %1 : $@thick C.Type): init(fromTuple: (repeat each T)) { self.values = fromTuple } // CHECK-LABEL: sil hidden [exact_self_class] [ossa] @$s32variadic_generic_allocating_init1CC8fromPackACyxxQp_QPGxxQp_tcfC : $@convention(method) (@pack_owned Pack{repeat each T}, @thick C.Type) -> @owned C { // CHECK: bb0(%0 : $*Pack{repeat each T}, %1 : $@thick C.Type): init(fromPack: repeat each T) { self.values = (repeat each fromPack) } }