fpc/tests/webtbs/tw3490.pp
2005-01-02 17:33:15 +00:00

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.