Files
swift-mirror/test/multifile/multiconformanceimpls/Inputs/A.swift
2018-05-14 13:53:54 -07:00

21 lines
251 B
Swift

public protocol Proto {
func wellNow()
}
public struct Impl {
var x: Int
public init() {
x = 9
}
}
public struct Container<T: Proto> {
public var contained : T
public init(_ i: T) {
contained = i
}
}
public var any : Any = 0