summary refs log tree commit diff stats
path: root/tests/template/tprefer_immediate.nim
blob: 578f447b024cd9fedfc62995fa0a6b7b47325f1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
discard """
  output: '''immediate'''
"""

# Test that immediate templates are preferred over non-immediate templates

template foo(a, b: expr) = echo "foo expr"

template foo(a, b: int) = echo "foo int"
template foo(a, b: float) = echo "foo float"
template foo(a, b: string) = echo "foo string"
template foo(a, b: expr) {.immediate.} = echo "immediate"
template foo(a, b: bool) = echo "foo bool"
template foo(a, b: char) = echo "foo char"

foo(undeclaredIdentifier, undeclaredIdentifier2)