tb0054.pp 388 B

1234567891011121314151617181920212223
  1. { %FAIL }
  2. { Old file: tbf0281.pp }
  3. { dup id checking with property is wrong }
  4. {$mode objfpc}
  5. type
  6. test_one = class
  7. protected
  8. fTest : String;
  9. public
  10. property Test: String READ fTest WRITE fTest;
  11. procedure Testen(Test: BOolean);
  12. { ^ duplicate identifier? }
  13. end;
  14. procedure test_one.testen(test: boolean);
  15. begin
  16. end;
  17. begin
  18. end.