Files
swift-mirror/test/embedded/basic-errors-no-stdlib.swift
Arnold Schwaighofer d019f37b68 [embedded] Enable support for existentials/boxed protocol types per default
And enable this feature in production.
2025-12-10 08:50:23 -08:00

14 lines
479 B
Swift

// RUN: %target-swift-frontend -emit-ir -verify %s -parse-stdlib -enable-experimental-feature Embedded -wmo -disable-embedded-existentials
// REQUIRES: swift_in_compiler
// REQUIRES: swift_feature_Embedded
// This is only an error if we disable support for existentials in embedded.
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}}
}