Merge pull request #81612 from calda/cal--trailing-comma-missing-from-6.1

Add trailing comma support in cases missing from Swift 6.1
This commit is contained in:
Rintaro Ishizaki
2025-05-22 11:30:28 -07:00
committed by GitHub
6 changed files with 63 additions and 9 deletions

View File

@@ -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