pascalabcnet/TestSuite/match_const1.pas

8 lines
83 B
ObjectPascal
Raw Normal View History

const c = 2;
begin
var l := 2;
match l with
c: Assert(c=2);
end;
end.