Files
Nim/tests/compile/tstrace.nim
2013-03-16 23:53:07 +01:00

17 lines
260 B
Nim

# Test the new stacktraces (great for debugging!)
{.push stack_trace: on.}
proc recTest(i: int) =
# enter
if i < 10:
recTest(i+1)
else: # should printStackTrace()
var p: ptr int = nil
p[] = 12
# leave
{.pop.}
recTest(0)