mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
177 B
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 = ()
|
|
}
|