mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
48 lines
2.0 KiB
Swift
48 lines
2.0 KiB
Swift
// RUN: %target-typecheck-verify-swift -swift-version 5
|
|
// RUN: %target-swift-frontend -typecheck -disable-access-control %s
|
|
|
|
public protocol PublicProtoWithReqs {
|
|
associatedtype Assoc
|
|
func foo()
|
|
}
|
|
|
|
@usableFromInline struct UFIAdopter<T> : PublicProtoWithReqs {}
|
|
// expected-error@-1 {{type alias 'Assoc' must be declared '@usableFromInline' because it matches a requirement in protocol 'PublicProtoWithReqs'}} {{none}}
|
|
// expected-error@-2 {{instance method 'foo()' must be declared '@usableFromInline' because it matches a requirement in protocol 'PublicProtoWithReqs'}} {{none}}
|
|
extension UFIAdopter {
|
|
typealias Assoc = Int
|
|
// expected-note@-1 {{'Assoc' declared here}}
|
|
func foo() {}
|
|
// expected-note@-1 {{'foo()' declared here}}
|
|
}
|
|
|
|
@usableFromInline struct UFIAdopterAllInOne<T> : PublicProtoWithReqs {
|
|
typealias Assoc = Int
|
|
// expected-error@-1 {{type alias 'Assoc' must be declared '@usableFromInline' because it matches a requirement in protocol 'PublicProtoWithReqs'}} {{none}}
|
|
func foo() {}
|
|
// expected-error@-1 {{instance method 'foo()' must be declared '@usableFromInline' because it matches a requirement in protocol 'PublicProtoWithReqs'}} {{none}}
|
|
}
|
|
|
|
internal struct InternalAdopter<T> : PublicProtoWithReqs {}
|
|
extension InternalAdopter {
|
|
typealias Assoc = Int // okay
|
|
func foo() {} // okay
|
|
}
|
|
|
|
|
|
@usableFromInline protocol UFIProtoWithReqs {
|
|
associatedtype Assoc
|
|
func foo()
|
|
}
|
|
|
|
public struct PublicAdopter<T> : UFIProtoWithReqs {}
|
|
// expected-error@-1 {{type alias 'Assoc' must be declared '@usableFromInline' because it matches a requirement in protocol 'UFIProtoWithReqs'}} {{none}}
|
|
// expected-error@-2 {{instance method 'foo()' must be declared '@usableFromInline' because it matches a requirement in protocol 'UFIProtoWithReqs'}} {{none}}
|
|
extension PublicAdopter {
|
|
typealias Assoc = Int
|
|
// expected-note@-1 {{'Assoc' declared here}}
|
|
func foo() {}
|
|
// expected-note@-1 {{'foo()' declared here}}
|
|
}
|
|
extension InternalAdopter: UFIProtoWithReqs {} // okay
|