tb0165.pp 218 B

1234567891011121314151617
  1. { %OPT= -So }
  2. { Old file: tbs0196.pp }
  3. { "function a;" is accepted (should require result type) OK 0.99.1 (PM) }
  4. Unit tb0165;
  5. interface
  6. function a : integer;
  7. implementation
  8. function a;
  9. begin
  10. a:=1;
  11. end;
  12. end.