mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
15 lines
429 B
Swift
15 lines
429 B
Swift
// RUN: %target-typecheck-verify-swift
|
|
// RUN: %target-typecheck-verify-swift -enable-explicit-existential-types
|
|
|
|
protocol P { }
|
|
|
|
func foo<T: P>(_: T) {}
|
|
func bar<T: P>(_: T.Type) {}
|
|
|
|
func open(existential: P, mutExistential: inout P) {
|
|
_openExistential(existential, do: foo)
|
|
_openExistential(type(of: existential), do: bar)
|
|
_openExistential(mutExistential, do: foo)
|
|
_openExistential(type(of: mutExistential), do: bar)
|
|
}
|