tb0092.pp 283 B

123456789101112
  1. { Old file: tbs0109.pp }
  2. { syntax error not detected when using a set as pointer OK 0.99.1 (FK) }
  3. Type T = (aa,bb,cc,dd,ee,ff,gg,hh);
  4. Tset = set of t;
  5. Var a: Tset;
  6. Begin
  7. If (aa in a) Then begin end;
  8. {it seems that correct code is generated, but the syntax is wrong}
  9. End.