diff options
Diffstat (limited to 'tests/casestmt/tincompletecaseobject2.nim')
-rw-r--r-- | tests/casestmt/tincompletecaseobject2.nim | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/casestmt/tincompletecaseobject2.nim b/tests/casestmt/tincompletecaseobject2.nim index ccf6a3a6c..c080cfeb1 100644 --- a/tests/casestmt/tincompletecaseobject2.nim +++ b/tests/casestmt/tincompletecaseobject2.nim @@ -2,9 +2,10 @@ discard """ cmd: "nim check $file" errormsg: "not all cases are covered; missing: {A, B}" nimout: ''' -tincompletecaseobject2.nim(16, 1) Error: not all cases are covered; missing: {B, C, D} -tincompletecaseobject2.nim(19, 1) Error: not all cases are covered; missing: {A, C} -tincompletecaseobject2.nim(22, 1) Error: not all cases are covered; missing: {A, B} +tincompletecaseobject2.nim(18, 1) Error: not all cases are covered; missing: {' ', '!', '\"', '#', '$', '%', '&', '\'', '*', '+', ',', '-', '.', '/', ':', ';', '<', '=', '>', '?', '@', '[', '\\', ']', '^', '_', '`', '{', '|', '}', '~'} +tincompletecaseobject2.nim(22, 1) Error: not all cases are covered; missing: {B, C, D} +tincompletecaseobject2.nim(25, 1) Error: not all cases are covered; missing: {A, C} +tincompletecaseobject2.nim(28, 1) Error: not all cases are covered; missing: {A, B} ''' """ type @@ -12,6 +13,11 @@ type AliasABCD = ABCD RangeABC = range[A .. C] AliasRangeABC = RangeABC + PrintableChars = range[' ' .. '~'] + +case PrintableChars 'x': +of '0'..'9', 'A'..'Z', 'a'..'z': discard +of '(', ')': discard case AliasABCD A: of A: discard |