mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-23 13:36:16 +02:00
15 lines
201 B
ObjectPascal
15 lines
201 B
ObjectPascal
{ %OPT=-Sew }
|
|
|
|
{ Source provided for Free Pascal Bug Report 3490 }
|
|
{ Submitted by "Tomas Hajny" on 2004-12-29 }
|
|
{ e-mail: }
|
|
var
|
|
A: byte;
|
|
B: cardinal;
|
|
|
|
begin
|
|
A := 3;
|
|
B := 0;
|
|
B := B + A * A;
|
|
end.
|