summary refs log tree commit diff stats
path: root/tests/vm/t17121.nim
blob: bf2d6423fc386a13143e0b38f69cf50077c4ea90 (plain) (blame)
1
2
3
4
5
6
7
8
9
discard """
  errormsg: "cannot 'importc' variable at compile time; c_printf"
"""

proc c_printf*(frmt: cstring): cint {.importc: "printf", header: "<stdio.h>", varargs, discardable.} =
  ## foo bar
  runnableExamples: discard
static:
  let a = c_printf("abc\n")