mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
16 lines
377 B
Swift
16 lines
377 B
Swift
// RUN: not %target-swift-frontend %s -typecheck
|
|
|
|
// https://github.com/apple/swift/issues/47363
|
|
|
|
public protocol _UTFEncoding {
|
|
associatedtype EncodedScalar where EncodedScalar == Int
|
|
}
|
|
|
|
public protocol UnicodeEncoding {
|
|
associatedtype EncodedScalar: BidirectionalCollection
|
|
}
|
|
|
|
public protocol _UTFParser {
|
|
associatedtype Encoding: UnicodeEncoding, _UTFEncoding
|
|
}
|