pascalabcnet/TestSuite/match_byte_integer.pas

7 lines
80 B
ObjectPascal
Raw Permalink Normal View History

2019-05-30 13:37:54 +03:00
begin
var l: byte;
l := 1;
match l with
1: Assert(l=1);
end;
end.