Explorar el Código

* bugfix report 2070

carl hace 23 años
padre
commit
563a31edb4
Se han modificado 1 ficheros con 17 adiciones y 0 borrados
  1. 17 0
      tests/webtbf/tw2070.pp

+ 17 - 0
tests/webtbf/tw2070.pp

@@ -0,0 +1,17 @@
+{ Source provided for Free Pascal Bug Report 2070 }
+{ Submitted by "MrNoop" on  2002-08-09 }
+{ e-mail: [email protected] }
+type
+TPersistent = class (TObject)
+public
+constructor Create(Proprio:TPersistent);virtual;
+end;
+
+TServeur = class (TPersistent)
+public
+constructor Create(Proprio:TPersistent);override;
+end;
+
+constructor TServeur.Create(Proprio:TPersistent);
+begin
+inherited Create; {<- lethal error (see above)}