// RUN: %target-typecheck-verify-swift protocol Wrapper { associatedtype T func get() } func foo(_: R) -> any Wrapper {} func test() { foo(0).get() }