mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
8 lines
130 B
Nim
8 lines
130 B
Nim
template detect(v: untyped) =
|
|
doAssert typeof(v) is int
|
|
|
|
detect:
|
|
try:
|
|
raise (ref ValueError)()
|
|
except ValueError:
|
|
42 |