mirror of
https://github.com/apple/swift.git
synced 2026-03-04 18:24:35 +01:00
12 lines
377 B
Swift
12 lines
377 B
Swift
// RUN: %target-swift-frontend -emit-ir -verify %s -parse-stdlib -enable-experimental-feature Embedded -wmo
|
|
|
|
// REQUIRES: swift_in_compiler
|
|
|
|
public protocol Player {}
|
|
struct Concrete: Player {}
|
|
|
|
public func test() -> any Player {
|
|
Concrete() // expected-error {{cannot use a value of protocol type 'any Player' in embedded Swift}}
|
|
// expected-note@-1 {{called from here}}
|
|
}
|