summary refs log blame commit diff stats
path: root/tests/casestmt/tincompletecaseobject2.nim
blob: bbeae190978e83e0a1378fdc1bf2077c35a7b7a2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                      





                          

                                    

                                                                                                                                                                                                       

                                        
 

                                                 

             

                                              

             

                                              
             
discard """
cmd: "nim check $file"
"""
type
  ABCD = enum A, B, C, D
  AliasABCD = ABCD
  RangeABC = range[A .. C]
  AliasRangeABC = RangeABC
  PrintableChars = range[' ' .. '~']

case PrintableChars 'x': #[tt.Error
^ not all cases are covered; missing: {' ', '!', '\"', '#', '$$', '%', '&', '\'', '*', '+', ',', '-', '.', '/', ':', ';', '<', '=', '>', '?', '@', '[', '\\', ']', '^', '_', '`', '{', '|', '}', '~'}]#
of '0'..'9', 'A'..'Z', 'a'..'z': discard
of '(', ')': discard

case AliasABCD A: #[tt.Error
^ not all cases are covered; missing: {B, C, D}]#
of A: discard

case RangeABC A: #[tt.Error
^ not all cases are covered; missing: {A, C}]#
of B: discard

case AliasRangeABC A: #[tt.Error
^ not all cases are covered; missing: {A, B}]#
of C: discard