blob: 1bbe67508d4aecd76bf8c39a491c671c5d1a3289 [file] [log] [blame]
// RUN: %empty-directory(%t)
// RUN: not %target-swift-frontend -c %s -index-store-path %t
struct X : Z {
func b(_ : Y) {}
}
protocol Z {
associatedtype a
typealias Y = a.c
}