blob: ea6f830c332528bd3ff46976f0ee31143b637be8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ %FAIL }
program toperator29;
type
TTest = (One, Two, Three);
TTests = set of TTest;
operator < (left: TTests; right: TTests) res : Boolean;
begin
end;
begin
end.
|