mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 20:32:41 +02:00
* bugfix report 2070
This commit is contained in:
parent
d1ac166584
commit
563a31edb4
17
tests/webtbf/tw2070.pp
Normal file
17
tests/webtbf/tw2070.pp
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{ Source provided for Free Pascal Bug Report 2070 }
|
||||||
|
{ Submitted by "MrNoop" on 2002-08-09 }
|
||||||
|
{ e-mail: mrnoop@the-asw.com }
|
||||||
|
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)}
|
Loading…
Reference in New Issue
Block a user