fpc/tests/tbs/tb0381.pp
2002-09-07 15:40:30 +00:00

15 lines
169 B
ObjectPascal

{ %VERSION=1.1 }
var
w : widechar;
begin
case w of
'A' : ;
'B' : ;
#1234: ;
#8888: ;
#8889..#9999: ;
'Z'..'a': ;
end;
end.