mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
189 B
Swift
12 lines
189 B
Swift
// 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
|
|
}
|