mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
22 lines
363 B
ObjectPascal
22 lines
363 B
ObjectPascal
program settest;
|
|
const
|
|
size = 31;
|
|
var
|
|
testset : set of 0..size;
|
|
i : integer;
|
|
begin
|
|
testset := [];
|
|
testset := testset + [0,1,2,3,4];
|
|
if testset <> [0,1,2,3,4] then
|
|
begin
|
|
writeln('add wrong');
|
|
halt(1);
|
|
end;
|
|
testset := testset - [2];
|
|
if testset <> [0,1,3,4] then
|
|
begin
|
|
writeln('sub wrong');
|
|
halt(1);
|
|
end;
|
|
end.
|