Skip to content

Commit b51b60b

Browse files
committed
[RemoteMirror] Add missing test.swift file for interop tests.
1 parent bfc2753 commit b51b60b

File tree

1 file changed

+11
-0
lines changed
  • unittests/Reflection/RemoteMirrorInterop

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
@_cdecl("test")
2+
public func test() -> UInt {
3+
return unsafeBitCast(c, to: UInt.self)
4+
}
5+
6+
class C {
7+
let x = "123"
8+
let y = 456
9+
}
10+
11+
let c = C()

0 commit comments

Comments
 (0)