peter 20 years ago
parent
commit
c70c501571
1 changed files with 14 additions and 0 deletions
  1. 14 0
      tests/webtbs/tw3490.pp

+ 14 - 0
tests/webtbs/tw3490.pp

@@ -0,0 +1,14 @@
+{ %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.