mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Add trailing comma support in cases missing from Swift 6.1
This commit is contained in:
@@ -46,7 +46,10 @@ struct GenericHolder<T>: Holder {
|
||||
init(value: T) { self.value = value}
|
||||
}
|
||||
|
||||
protocol PairType<T, U> {
|
||||
protocol PairType<
|
||||
T,
|
||||
U,
|
||||
> {
|
||||
associatedtype T
|
||||
associatedtype U
|
||||
|
||||
|
||||
Reference in New Issue
Block a user