[RemoteMirror] Add missing test.swift file for interop tests.

This commit is contained in:
Mike Ash
2019-03-25 20:51:17 -04:00
parent bfc2753976
commit b51b60b227

View File

@@ -0,0 +1,11 @@
@_cdecl("test")
public func test() -> UInt {
return unsafeBitCast(c, to: UInt.self)
}
class C {
let x = "123"
let y = 456
}
let c = C()