+ initial version from Peter

This commit is contained in:
Jonas Maebe 2001-02-26 12:50:23 +00:00
parent c7af813c76
commit 156b4aa55f

11
tests/tbf/tb0100.pp Normal file
View File

@ -0,0 +1,11 @@
type
enum1 = (one,two,three);
enum2 = (four,five,six);
enumset1 = set of enum1;
var
s1 : enumset1;
begin
s1:=[one,two]+[four];
end.