Files
swift-mirror/test/ModuleInterface/ModuleCache/Inputs/mock-sdk/ExportedLib.swiftinterface
Harlan Haskins d3b8ce7ae2 [test] Update ParseableInterface to ModuleInterface
Also remove uses of -emit-parseable-module-interface from tests
2019-09-13 14:55:48 -07:00

12 lines
291 B
Plaintext

// swift-interface-format-version: 1.0
// swift-module-flags: -parse-stdlib -module-name ExportedLib
@_exported import SomeCModule
public struct ExportedInterface {
@inlinable public init() {}
}
public var testValue: ExportedInterface {
@inlinable get { return ExportedInterface() }
}