summary refs log tree commit diff stats
path: root/tests/js/twritestacktrace.nim
blob: 2fe2b1987a7e5120b02ce6fbfb2e02a246252339 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  cmd: "nim js --panics:on $file"
  output: '''Traceback (most recent call last)
twritestacktrace.nim(12) at module twritestacktrace
twritestacktrace.nim(10) at twritestacktrace.hello
'''
"""

proc hello() =
  writeStackTrace()

hello()