mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
24 lines
555 B
Swift
24 lines
555 B
Swift
// RUN: %target-swift-frontend -emit-ir %s
|
|
|
|
public protocol LinkedListNode: AnyObject {
|
|
associatedtype T
|
|
}
|
|
|
|
public class LinkedList<N: LinkedListNode> where N.T: Hashable {
|
|
public typealias T = N.T
|
|
}
|
|
|
|
public struct LinkedListIterator<N: LinkedListNode>: IteratorProtocol {
|
|
public mutating func next() -> N.T? {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
extension LinkedList: Sequence {
|
|
public typealias Element = T
|
|
public typealias Iterator = LinkedListIterator<N>
|
|
public __consuming func makeIterator() -> Iterator {
|
|
fatalError()
|
|
}
|
|
}
|