summary refs log tree commit diff stats
path: root/tests/macros/t19766_20114.nim
blob: ac336f1504bf97235441a893424a95551aca4f91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
discard """
  action: compile
  nimout: '''
const
  foo {.strdefine.} = "abc"
let hey {.tddd.} = 5
'''
"""

import macros

template tddd {.pragma.}

expandMacros:
  const foo {.strdefine.} = "abc"
  let hey {.tddd.} = 5