// RUN: %target-swift-frontend -disable-type-layout -module-name main -I %t -emit-ir -primary-file %s %S/Inputs/ABIInaccessible.swift | %FileCheck %s public struct AnotherType { init(_ t: T) { p = Public(t) } public var p : Public } // Don't pass the metadata of Private to AnotherType's outlined destroy. // CHECK-LABEL: define{{( dllexport)?}}{{( protected)?}} swiftcc void @"$s4main4copyyAA11AnotherTypeVyxGAElF"(%T4main11AnotherTypeV* noalias nocapture sret %0, %T4main11AnotherTypeV* noalias nocapture %1, %swift.type* %T) // CHECK: [[MD:%.*]] = call swiftcc %swift.metadata_response @"$s4main11AnotherTypeVMa"(i{{.*}} 0, %swift.type* %T) // CHECK: [[MD1:%.*]] = extractvalue %swift.metadata_response [[MD]], 0 // CHECK: [[MD2:%.*]] = call swiftcc %swift.metadata_response @"$s4main6PublicVMa"(i{{.*}} 0, %swift.type* %T) // CHECK: [[MD3:%.*]] = extractvalue %swift.metadata_response [[MD2]], 0 // CHECK: call %T4main11AnotherTypeV* @"$s4main11AnotherTypeVyxGlWOc"(%T4main11AnotherTypeV* %1, %T4main11AnotherTypeV* {{.*}}, %swift.type* %T, %swift.type* [[MD3]], %swift.type* [[MD1]]) public func copy(_ a: AnotherType) -> AnotherType { let copy = a return copy }