mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
139 B
Swift
10 lines
139 B
Swift
// RUN: not %target-swift-frontend -typecheck %s
|
|
|
|
protocol P {
|
|
associatedtype M
|
|
}
|
|
|
|
struct S<M> {}
|
|
|
|
extension S: P where Self.M == P.M {}
|