mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00
18 lines
132 B
ObjectPascal
18 lines
132 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw40504;
|
|
|
|
{$scopedenums on}
|
|
|
|
Type
|
|
TSet = set of (a,b);
|
|
|
|
var
|
|
S : TSet;
|
|
|
|
begin
|
|
S:=[];
|
|
Include(S,a);
|
|
end.
|
|
|