summary refs log tree commit diff stats
path: root/testament/tests/shouldfail/tccodecheck.nim
blob: 7b5f0cce682dc148d18d24df48f8401b20cdeab6 (plain) (blame)
1
2
3
4
5
6
7
8
9
discard """
  targets: "c"
  ccodecheck: "baz"
"""

proc foo(): void {.exportc: "bar".}=
  echo "Hello World"

foo()