Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0122-rdar30965000.swift
2017-10-03 08:32:13 -07:00

10 lines
182 B
Swift

// RUN: %target-swift-frontend %s -emit-ir -o /dev/null
protocol P {
associatedtype A
}
struct Straint<C: P> where C.A : P {
typealias X = Any
}
protocol Q : Straint<Self>.X {}