mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
291 B
Plaintext
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() }
|
|
}
|