tb0019.pp 294 B

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