// RUN: %empty-directory(%t) // RUN: %target-swift-frontend -emit-module %S/Inputs/parameterized_protocol_other.swift -emit-module-path %t/parameterized_protocol_other.swiftmodule // RUN: %target-typecheck-verify-swift -I%t import parameterized_protocol_other func testParameterizedProtocol(_: some MySequence) {} func testParameterizedProtocol(x : any MySequence) -> MySequenceHolder { return MySequenceHolder(seq: x) }