fpc/tests/webtbs/tw3796.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

33 lines
517 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 3796 }
{ Submitted by "Antonio Marti" on 2005-03-15 }
{ e-mail: windowze2000@yahoo.es }
{
FAILS WITH: fpc -Mobjfpc test.pp
WHY? IS IT A BUG?
}
unit tw3796;
{$mode objfpc}
interface
uses objects;
type
PType = ^TType;
TType = object(TObject)
private
function IsEmpty: Boolean;
public
property Empty : Boolean Read IsEmpty;
end;
implementation
function TType.IsEmpty: Boolean;
begin
result:=True;
end;
end.