Explorar o código

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 %!s(int64=9) %!d(string=hai) anos
pai
achega
c7e606925e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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.