mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
12 lines
156 B
Nim
12 lines
156 B
Nim
discard """
|
|
outputsub: '''tproper_stacktrace.nim(7) tproper_stacktrace'''
|
|
exitcode: 1
|
|
"""
|
|
|
|
template fuzzy(x) =
|
|
echo x[] != 9
|
|
|
|
var p: ptr int
|
|
fuzzy p
|
|
|