Files
swift-mirror/test/IRGen/Inputs/relative_protocol_witness_tables2.swift
Arnold Schwaighofer 234260f6a3 Add missing test input
2024-03-10 16:11:27 -07:00

16 lines
217 B
Swift

public protocol ResilientProto {
associatedtype T
func impl()
}
public struct ResilientStruct<T> : ResilientProto {
var x : T?
public init(_ t: T) {
x = t
}
public func impl() {
print(x)
}
}