Avatar
Avatar
Iceman
@swift-6.0.3 @swift-5.10.1 protocol P1 { associatedtype T = Int } protocol P2 { associatedtype T: StringProtocol } struct S<T>: P1, P2 where T: StringProtocol { }
swift510 BOT 3/25/2025 5:40 AM
exit status: 1 with <stdin>:7:8: error: type 'S<T>' does not conform to protocol 'P2' struct S<T>: P1, P2 where T: StringProtocol { ^ main.S (internal):3:24: note: possibly intended match 'S<T>.T' (aka 'Int') does not conform to 'StringProtocol' internal typealias T = Int ^ <stdin>:5:20: note: protocol requires nested type 'T'; add nested type 'T' for conformance associatedtype T: StringProtocol ^