Avatar
Avatar
omochimetaru
@swift-main struct K<T: Sequence> { func foo() { print(T.SubSequence.self) } }
swiftNightly BOT 11/3/2024 8:13 AM
exit status: 1 with <stdin>:3:17: error: type 'T' has no member 'SubSequence' 1 | struct K<T: Sequence> { 2 | func foo() { 3 | print(T.SubSequence.self) | `- error: type 'T' has no member 'SubSequence' 4 | } 5 | }