pascalabcnet/TestSuite/match_byte_integer.pas
Mikhalkovich Stanislav 92b0bf4cc2 fix #869
2019-05-30 13:37:54 +03:00

7 lines
80 B
ObjectPascal

begin
var l: byte;
l := 1;
match l with
1: Assert(l=1);
end;
end.