This commit is contained in:
pierre 2000-03-14 16:34:26 +00:00
parent e95573a025
commit d54b55a11b

18
tests/webtbs/tbug839.pp Normal file
View File

@ -0,0 +1,18 @@
{$mode tp}
program notcom;
type demo=object
constructor init;
destructor done(x:longint);
end;
constructor demo.init;
begin
end;
destructor demo.done(x:longint);
begin
end;
begin
end.