Files
swift-mirror/test/Constraints/openExistential.swift
2018-07-26 23:13:43 -07:00

14 lines
355 B
Swift

// RUN: %target-typecheck-verify-swift
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)
}