blob: d65193c2e8cd09b57f0eb063d1c6568d522e24bf [file] [log] [blame]
// RUN: not %target-swift-frontend -typecheck %s
protocol Iteratee {
associatedtype Iterator
}
protocol BidirectionalAdvancingCollection: Iteratee {
struct Iterator<Elements> {}
}