blob: 353732c60e1f83730a94c14a7583ded2a8e4ddc2 [file] [log] [blame]
import itermod
public protocol MySequence {
associatedtype Element
associatedtype Iterator: MyIter where Iterator.Element == Element
}
public struct MyBar: MySequence, MyIter {
public func callme() {}
public typealias Element = UInt8
public typealias Iterator = MyBar
}