summaryrefslogtreecommitdiff
path: root/tests/webtbf/tw20907.pp
blob: 4b41fe92846cd6f8684a4c71d206527a552c12ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ %opt=-vew -Sew }
{ %fail }

type
  trec = record
    s: set of byte;
  end;

function f: trec;
begin
  if f.s <>[] then ;
end;

begin
  f;
end.