pascalabcnet/TestSuite/patterns/patterns-nested-const-pattern.pas

14 lines
201 B
ObjectPascal
Raw Permalink Normal View History

2020-02-10 15:51:16 +03:00
begin
var a := 3;
var b := 2;
match a with
1: assert(false);
2: assert(false);
3:
match b with
1: assert(false);
2: exit;
end;
end;
assert(false);
end.