Files
swift-mirror/test/Interpreter/Inputs/resilient_generic_struct_v2.swift

9 lines
174 B
Swift

public struct ResilientGenericStruct<T> {
public init(value: T) {
size = MemoryLayout<T>.size
storage = value
}
public var size: Int
private var storage: T
}