mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-27 19:06:31 +00:00
refs https://github.com/nim-lang/Nim/pull/24315#discussion_r1816332587
(cherry picked from commit 40fc2d0e76)
6 lines
136 B
Nim
6 lines
136 B
Nim
from mstatic import Foo
|
|
|
|
doAssert $Foo(x: 1, y: 2) == "static Foo(1, 2)"
|
|
let foo = Foo(x: 3, y: 4)
|
|
doAssert $foo == "runtime Foo(3, 4)"
|