blob: 1041e20f7a98644b3cf02c4420101cde04f533c2 [file] [log] [blame]
// RUN: %target-swift-frontend -module-name test -emit-ir -primary-file %s %S/Inputs/require-finalize-witness-other.swift -sdk %sdk -o - | %FileCheck %s
// REQUIRES: objc_interop
import Foundation
@objc class C: NSObject { }
protocol P {
func foo(_: String)
}
// CHECK: define {{.*}} @"$s4test1CCAA1PA2aDP3fooyySSFTW"
extension C: P { }