summary refs log tree commit diff stats
path: root/tests/template/tstempl.nim
blob: 649082041657bc8afc355883cf4b28c458789717 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
discard """
  output: '''global = levB, arg = levA, test = false
levB'''
"""

# tstempl.nim
import strutils

type
  TLev = enum
    levA,
    levB

var abclev = levB

template tstLev(abclev: TLev) =
  bind tstempl.abclev, `%`
  writeLine(stdout, "global = $1, arg = $2, test = $3" % [
    $tstempl.abclev, $abclev, $(tstempl.abclev == abclev)])
  # evaluates to true, but must be false


tstLev(levA)
writeLine(stdout, $abclev)