Browse Source

corrected test (ASH returns LONGINT per default)

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@6843 8c9fc860-2736-0410-a75d-ab315db34111
felixf 9 years ago
parent
commit
c7e606925e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      source/Oberon.Compilation.Test

+ 1 - 1
source/Oberon.Compilation.Test

@@ -25072,7 +25072,7 @@ negative: capital letter of variable integer
 positive: arithmetic shift of variable integers
 
 	MODULE Test;
-	VAR integer, result: INTEGER;
+	VAR integer: INTEGER; result: LONGINT;
 	BEGIN result := ASH (integer, integer)
 	END Test.