blob: 8f0d651f83b2342bfa8859495f36d31ea93eb107 [file] [log] [blame]
// RUN: not %target-swift-frontend %s -emit-ir
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
protocol b {
var a: c<b> {
get
}
}
class c<d : b> {
}