fpc/tests/webtbf/tw2650.pp
Jonas Maebe 159a35da4e * check for read/write after a newly declared property (mantis #26011)
o this reverts the support that was added for such declarations when
     mantis #4676 was fixed, but this was done for Delphi compatibility
     and
    a) current Delphi versions don't accept such declarations anymore either
    b) such declarations are meaningless
   o fixed a number of such invalid property declarations in packages

git-svn-id: trunk@27966 -
2014-06-15 10:59:47 +00:00

18 lines
340 B
ObjectPascal

{ %fail }
{ no longer supported by current Delphi versions and doesn't mean anything
anyway }
{ Source provided for Free Pascal Bug Report 2650 }
{ Submitted by "marcov" on 2003-08-21 }
{ e-mail: marco@freepascal.org }
{$mode Delphi}
type someclass=class
property integer :integer;
end;
begin
end.