Files
swift-mirror/test/ParseableInterface/ModuleCache/Inputs/mock-sdk/ExportedLib.swiftinterface
Nathan Hawes 58d0ee0888 [ParseableInterface] Distinguish SDK and non-SDK dependencies
This allows the SDK to be relocated without automatically resulting in a
rebuild.

Based on an old patch from Jordan Rose.
2019-04-03 06:35:11 -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() }
}