Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0171-sr-8642.swift
2018-08-28 09:55:45 -07:00

11 lines
162 B
Swift

// 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") }
}