pierre 25 years ago
parent
commit
d54b55a11b
1 changed files with 18 additions and 0 deletions
  1. 18 0
      tests/webtbs/tbug839.pp

+ 18 - 0
tests/webtbs/tbug839.pp

@@ -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.