mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 22:07:56 +02:00
25 lines
357 B
ObjectPascal
25 lines
357 B
ObjectPascal
{ %fail }
|
|
|
|
{ Source provided for Free Pascal Bug Report 3331 }
|
|
{ Submitted by "Ales Katona" on 2004-09-26 }
|
|
{ e-mail: ales@chello.sk }
|
|
|
|
{$mode delphi}
|
|
|
|
type TA = class
|
|
private
|
|
a: cardinal;
|
|
b: cardinal;
|
|
procedure doit;
|
|
end;
|
|
|
|
procedure TA.doit;
|
|
begin
|
|
// This should not be allowed
|
|
for a:=0 to 2 do
|
|
b:=0;
|
|
end;
|
|
|
|
begin
|
|
end.
|