Files
swift-mirror/test/SILGen/Inputs/variadic_generic_opaque_multifile_other.swift
2024-04-04 19:36:25 -04:00

12 lines
169 B
Swift

public protocol P {
func f()
}
public struct G<each T>: P {
public func f() {}
}
public func callee<each T>(_: repeat each T) -> some P {
G<repeat each T>()
}