summary refs log blame commit diff stats
path: root/tests/js/tvarargs.nim
blob: 2ddb421f85ed8378089d2befd785dd8b47e0997c (plain) (tree)
1
2
3
4
5
6
7
8
9







                                            
                                 


                            
# bug #3584

type
  ConsoleObj {.importc.} = object of RootObj
    log*: proc() {.nimcall varargs.}
  Console = ref ConsoleObj

var console* {.importc.}: Console

when isMainModule:
  console.log "Hello, world"