mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
438 B
Swift
12 lines
438 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -emit-module %S/Inputs/protocol_with_self_conforming_existential_other.swift -emit-module-path %t/protocol_with_self_conforming_existential_other.swiftmodule
|
|
// RUN: %target-swift-frontend -emit-silgen %s -I %t
|
|
|
|
import protocol_with_self_conforming_existential_other
|
|
|
|
// Declare a type conforming to P2, to force deserializing its
|
|
// requirement signature.
|
|
|
|
struct MyP2: P2 {}
|
|
|