mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 09:09:37 +02:00
15 lines
259 B
ObjectPascal
15 lines
259 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 2704 }
|
|
{ Submitted by "Johannes Berg" on 2003-10-01 }
|
|
{ e-mail: johannes -at- sipsolutions -dot- de }
|
|
program h;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TTest = class
|
|
constructor Create; virtual; abstract;
|
|
end;
|
|
|
|
begin
|
|
end.
|