blob: 7712938bfb2206fe0f613dcd4e3fb9cb6d56585b [file] [log] [blame]
// RUN: not %target-swift-frontend %s -typecheck
public protocol _UTFEncoding {
associatedtype EncodedScalar where EncodedScalar == Int
}
public protocol UnicodeEncoding {
associatedtype EncodedScalar: BidirectionalCollection
}
public protocol _UTFParser {
associatedtype Encoding: UnicodeEncoding, _UTFEncoding
}