summary refs log tree commit diff stats
path: root/tests/compile/tcompiles.nim
blob: 4b72d8bd8b6b7275dcae56d7e3ea481db7dfa683 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  output: '''no'''
"""

# test the new 'compiles' feature:

when compiles(4+5.0 * "hallo"):
  echo "yes"
else:
  echo "no"