mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
12 lines
277 B
Plaintext
12 lines
277 B
Plaintext
// swift-interface-format-version: 1.0
|
|
// swift-module-flags: -module-name ExportedLib
|
|
|
|
@_exported import SomeCModule
|
|
|
|
public struct ExportedInterface {
|
|
@inlinable public init() {}
|
|
}
|
|
public var testValue: ExportedInterface {
|
|
@inlinable get { return ExportedInterface() }
|
|
}
|