blob: 2abcabea2fa7e71138c0f2a6a54f59a9b26d2d87 [file] [log] [blame]
// NB: This file is not named SomeObjCModule.swift to avoid getting picked up
// by -enable-source-import
@_exported import SomeObjCModule
public struct RuncibleSpoon: _ObjectiveCBridgeable {
public init() {}
public func _bridgeToObjectiveC() -> NSRuncibleSpoon {
fatalError()
}
public static func _forceBridgeFromObjectiveC(_: NSRuncibleSpoon, result: inout RuncibleSpoon?) {
fatalError()
}
public static func _conditionallyBridgeFromObjectiveC(_: NSRuncibleSpoon, result: inout RuncibleSpoon?) -> Bool {
fatalError()
}
public static func _unconditionallyBridgeFromObjectiveC(_: NSRuncibleSpoon?) -> RuncibleSpoon {
fatalError()
}
}