summary refs log tree commit diff stats
path: root/tests/accept/run/tbug499771.nim
blob: 633ab39f6c57144e9d897811b51e75853bc66c39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  file: "tbug499771.nim"
  output: "TSubRange: 5 from 1 to 10"
"""
type TSubRange = range[1 .. 10]
var sr: TSubRange = 5
echo("TSubRange: " & $sr & " from " & $low(TSubRange) & " to " & 
     $high(TSubRange))