Files
swift-mirror/validation-test/compiler_crashers_2_fixed/rdar57728533.swift
2021-05-17 21:57:23 -04:00

11 lines
238 B
Swift

// RUN: not %target-swift-frontend -typecheck %s
protocol Item {
associatedtype Rule
func isValide(valid: Rule) -> Bool
}
protocol PairableItem: Item {
associatedtype AssociatedItem: PairableItem where AssociatedItem.Rule: Rule
}