blob: 509af414f620bd3df8bc1cde9efcfb0af40955c9 [file] [log] [blame]
// RUN: %target-swift-frontend %s -emit-silgen | %target-sil-opt
import Swift
protocol P {
associatedtype CodeUnit
mutating func decode<
G : IteratorProtocol
>(next: inout G) -> Int where G.Element == CodeUnit
}