mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
10 lines
158 B
Nim
10 lines
158 B
Nim
proc output_x:string {.compileTime.} = "x"
|
|
|
|
template t =
|
|
const x = output_x()
|
|
let
|
|
bar {.exportC:"bar" & x.} = 100
|
|
|
|
static:
|
|
doAssert(compiles (t()))
|