This commit is contained in:
Jonas Maebe 2005-03-03 19:39:11 +00:00
parent 86765dcf57
commit e1205ad4e4

20
tests/webtbf/tw3740.pp Normal file
View File

@ -0,0 +1,20 @@
{ %fail }
program fjf915a;
type
t = object
constructor Init (a: Boolean);
end;
constructor t.Init (a: Boolean);
begin
end;
var
p: ^t;
begin
New (p, Init (Init (False))) { WRONG }
end.