mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 00:49:31 +02:00

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 -
18 lines
340 B
ObjectPascal
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.
|