Files
swift-mirror/test/ParseableInterface/ModuleCache/Inputs/prebuilt-module-cache/Lib.swiftinterface
Jordan Rose 4bfe4eff6d [ParseableInterfaces] Add -prebuilt-module-cache-path to the frontend
When trying to load a swiftinterface, search this directory before
doing all the work of building a swiftmodule.
2018-12-17 18:23:28 -08:00

10 lines
240 B
Plaintext

// swift-interface-format-version: 1.0
// swift-module-flags: -parse-stdlib -module-name Lib
public struct FromInterface {
@inlinable public init() {}
}
public var testValue: FromInterface {
@inlinable get { return FromInterface() }
}