blob: 7c8b96a1c06b281d698ebfe6b2e9cce20737f6e2 [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 { }