summary refs log tree commit diff stats
path: root/tests/js/t7534.nim
blob: 64aadb8d68664cd3ea3052f05cb05c3e82ce59dd (plain) (blame)
1
2
3
4
5
6
7
proc f(x: int): int =
  result = case x
    of 1: 2
    elif x == 2: 3
    else: 1

doAssert 2 == f(f(f(f(1))))