blob: 442d7928c0d1a05cdc227553f4a28b88b2cb79bd [file] [log] [blame]
// RUN: %target-typecheck-verify-swift
protocol P {
associatedtype A : P where A.X == Self
associatedtype X : P where P.A == Self
// expected-error@-1{{associated type 'A' can only be used with a concrete type or generic parameter base}}
}