Add trailing comma support in cases missing from Swift 6.1

This commit is contained in:
Cal Stephens
2025-05-19 09:03:11 -07:00
parent 749e9ee090
commit 1a3d71cc53
16 changed files with 151 additions and 30 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