blob: a6dd5229ff5767c87571f21c9824d7171bfbe510 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ 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.
|