mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 10:09:36 +02:00
13 lines
113 B
ObjectPascal
13 lines
113 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tcase50;
|
|
|
|
{$mode ExtendedPascal}
|
|
|
|
begin
|
|
case 5 of
|
|
1, 2, 3: ;
|
|
otherwise
|
|
end;
|
|
end.
|