mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 17:49:33 +02:00
17 lines
264 B
ObjectPascal
17 lines
264 B
ObjectPascal
{ %fail }
|
|
|
|
{ Source provided for Free Pascal Bug Report 4144 }
|
|
{ Submitted by "Wiktor Sywula" on 2005-06-30 }
|
|
{ e-mail: wswiktor@poczta.fm }
|
|
procedure foo;
|
|
type
|
|
bar = object
|
|
constructor init;
|
|
procedure zzyzzy; virtual;
|
|
end;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|