Files
swift-mirror/test/SymbolGraph/Module/Inputs/CrossImport/B.swift
2020-12-10 19:13:37 -07:00

8 lines
94 B
Swift

public struct B {
public var y: Int
public init(y: Int) {
self.y = y
}
}