Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0157-rdar37730691.swift
2018-04-30 12:16:27 +10:00

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
}