public protocol OtherResilientProtocol { } var x: Int = 0 extension OtherResilientProtocol { public var propertyInExtension: Int { get { return x } set { x = newValue } } public static var staticPropertyInExtension: Int { get { return x } set { x = newValue } } } public protocol ResilientBaseProtocol { func requirement() -> Int } public protocol ResilientDerivedProtocol : ResilientBaseProtocol {} public protocol ProtocolWithRequirements { associatedtype T func first() func second() } public struct Wrapper: OtherResilientProtocol { } public struct ConcreteWrapper: OtherResilientProtocol { } public protocol ProtocolWithAssocTypeDefaults { associatedtype T1 = Self associatedtype T2: OtherResilientProtocol = Wrapper } public protocol ResilientSelfDefault : ResilientBaseProtocol { associatedtype AssocType: ResilientBaseProtocol = Self } @_fixed_layout public protocol OtherFrozenProtocol { func protocolMethod() } public protocol ResilientSendableBase: Sendable { func f() } public protocol ResilientSendable: ResilientSendableBase { func g() } public struct ConformsToResilientSendable: ResilientSendable { public func f() { } public func g() { } }