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

28 lines
333 B
ObjectPascal

{ %fail }
{ %opt=-Sew }
{ Source provided for Free Pascal Bug Report 2752 }
{ Submitted by "Micha" on 2003-10-26 }
{ e-mail: }
program Construct;
{$mode delphi}
type
tb = class
public
constructor Create(a: tobject);
end;
constructor tb.create(a: tobject);
begin
end;
var
b,c: tb;
begin
b := tb.create(b);
end.