mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
280 B
Swift
9 lines
280 B
Swift
// RUN: %target-swift-frontend -typecheck %s
|
|
|
|
// https://github.com/apple/swift/issues/58285
|
|
// The rule length limit (12 by default) is relative to the longest initial rule.
|
|
|
|
protocol P {
|
|
associatedtype T : P where T.T.T.T.T.T.T.T.T.T.T.T.T.T.T.T.T.T.T.T.T.T.T.T.T.T == Self
|
|
}
|