blob: 1e97bbf4961b26eb3a44f28c1d8740999bf2fa1a [file] [log] [blame]
// RUN: not %target-swift-frontend -typecheck %s
protocol P {}
protocol Q {}
class A : P {}
class B : A {}
struct A<T:B> {
var x: T { fatalError("death") }
}