summary refs log tree commit diff stats
path: root/tests/js/t20233.nim
blob: 401d1412293fd6d58155eeb41d9bacc54741a95d (plain) (blame)
1
2
3
4
5
6
7
discard """
  output: "yes"
"""
case 1.0
of 1.0..2.0, 4.0: echo "yes"
of 3.0: discard
else: echo "no"