summary refs log tree commit diff stats
path: root/tests/exception/t22008.nim
blob: c0758e7b45bf8c71eddca031f6815cc7ab1e2fd1 (plain) (blame)
1
2
3
4
5
6
7
8
template detect(v: untyped) =
  doAssert typeof(v) is int

detect:
  try:
    raise (ref ValueError)()
  except ValueError:
    42