/examples/c++iface/

hoang/Nim/atom/tests/errmsgs/t9768.nim?h=devel' type='application/atom+xml'/>
summary refs log tree commit diff stats
path: root/tests/errmsgs/t9768.nim
blob: d369150a530d326bd4a7eeeaf056c400fd7b5076 (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
discard """
  errmsg: "unhandled exception:"
  file: "system/fatal.nim"
  nimout: '''
stack trace: (most recent call last)
t9768.nim(28, 33)        main
t9768.nim(23, 11)        foo1
'''
"""










## line 20

proc foo1(a: int): auto =
  doAssert a < 4
  result = a * 2

proc main()=
  static:
    if foo1(1) > 0: discard foo1(foo1(2))

main()