Files
swift-mirror/validation-test/compiler_crashers_2_fixed/issue-57924.swift

12 lines
177 B
Swift

// RUN: %target-swift-frontend -typecheck %s
// https://github.com/apple/swift/issues/57924
protocol P {
associatedtype A: Sendable
}
struct S<T>: P {
typealias A = ()
}