blob: 1961e73a2227e3d5b77b564a554e77e29f0e999f [file] [log] [blame]
// RUN: not %target-swift-frontend -typecheck %s
protocol P {
associatedtype T
}
class G<T : P> {
init(_: T.T) {}
}
class Sub : G<S> {}
struct S : P {}
Sub()