mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
9 lines
269 B
Swift
9 lines
269 B
Swift
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -emit-silgen %s -import-objc-header %S/Inputs/objc_bridged_generic_conformance.h -verify -enable-sil-ownership
|
|
// REQUIRES: objc_interop
|
|
|
|
protocol P { func test() }
|
|
|
|
extension Thingy: P {
|
|
func test() {}
|
|
}
|