Merge pull request #75090 from tshortli/no-more-ncg-condfails

AST: Remove `NoncopyableGenerics` feature suppression
This commit is contained in:
Allan Shortlidge
2024-07-08 23:03:40 -07:00
committed by GitHub
14 changed files with 55 additions and 406 deletions

View File

@@ -1273,9 +1273,7 @@ public struct IteratorSequence<Base: IteratorProtocol> {
extension IteratorSequence: IteratorProtocol, Sequence {
#if $NoncopyableGenerics
public typealias Element = Base.Element
#endif
public typealias Element = Base.Element
/// Advances to the next element and returns it, or `nil` if no next element
/// exists.