mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00
25 lines
304 B
ObjectPascal
25 lines
304 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 3356 }
|
|
{ Submitted by "Vincent Snijders" on 2004-10-12 }
|
|
{ e-mail: vslist@zonnet.nl }
|
|
program project1;
|
|
|
|
{$mode objfpc}
|
|
uses
|
|
uw3356;
|
|
|
|
type
|
|
TB = class(TA)
|
|
protected
|
|
procedure DoB;
|
|
end;
|
|
|
|
procedure TB.DoB;
|
|
var
|
|
FA: integer;
|
|
begin
|
|
|
|
end;
|
|
|
|
begin
|
|
end.
|