6.7.1 The order of evaluation of the member-designators of a set-constructor is implementation-dependent.
Irie Pascal evaluates member-designators of set-constructors from left to right. For example given
var yes : set of char;
and later on
yes := ['y', 'Y']'
'y' will be evaluated before 'Y'.