summary refs log tree commit diff stats
path: root/tests/misc/tprep.nim
blob: 45f25b790d205b9dce5a646ad8395fbba3a8fa84 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
discard """
nimout: '''
tprep.nim(25, 9) Hint: Case 2 [User]
tprep.nim(27, 11) Hint: Case 2.3 [User]
'''
outputsub: ""
"""

# Test the features that used to belong to the preprocessor

import
  times

#{.warning: "This is only a test warning!".}

const
  case2 = true
  case3 = true

when defined(case1):
  {.hint: "Case 1".}
  when case3:
    {.hint: "Case 1.3".}
elif case2:
  {.hint: "Case 2".}
  when case3:
    {.hint: "Case 2.3".}
elif case3:
  {.hint: "Case 3".}
else:
  {.hint: "unknown case".}

var
  s: string
write(stdout, "compiled at " & system.CompileDate &
              " " & CompileTime & "\n")
echo getDateStr()
echo getClockStr()