mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
17 lines
171 B
Nim
17 lines
171 B
Nim
discard """
|
|
output: "{ b: 2 }"
|
|
"""
|
|
|
|
import jsconsole, jsffi
|
|
|
|
type
|
|
A = ref object
|
|
b: B
|
|
|
|
B = object
|
|
b: int
|
|
|
|
var a = cast[A](js{})
|
|
a.b = B(b: 2)
|
|
console.log a.b
|