mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 10:28:16 +02:00
14 lines
225 B
ObjectPascal
14 lines
225 B
ObjectPascal
{ Old file: tbs0070.pp }
|
|
{ shows missing include and exclude from rtl OK 0.99.6 (MVC) }
|
|
|
|
Program Test;
|
|
|
|
type
|
|
myenum = (YES,NO,MAYBE);
|
|
var
|
|
myvar:set of myenum;
|
|
Begin
|
|
Include(myvar,Yes);
|
|
Exclude(myvar,No);
|
|
end.
|