tb0404.pp 255 B

1234567891011121314151617
  1. type
  2. G = object
  3. public
  4. B:procedure;
  5. { the 1.1 compiler parses the next "public" as a procdirective of the preceding procedure }
  6. public
  7. constructor init;
  8. end;
  9. constructor G.init;
  10. begin
  11. B:=nil;
  12. end;
  13. begin
  14. end.