Files
swift-mirror/validation-test/compiler_crashers_2_fixed/sr15628.swift

10 lines
129 B
Swift

// RUN: %target-swift-frontend -typecheck %s
protocol P {
associatedtype A: Sendable
}
struct S<T>: P {
typealias A = ()
}