Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0179-rdar44963974.swift
2018-10-11 21:48:06 -07:00

10 lines
139 B
Swift

// RUN: not %target-swift-frontend -typecheck %s
protocol P {
associatedtype M
}
struct S<M> {}
extension S: P where Self.M == P.M {}