view graal/com.oracle.truffle.sl.test/tests/Sub.sl @ 18111:03259118b81b

Truffle: relax assertions for object state entries of int kind
author Andreas Woess <andreas.woess@jku.at>
date Thu, 16 Oct 2014 15:31:34 +0200
parents b16ec83edc73
children
line wrap: on
line source

function main() {  
  println(3 - 4);  
  println(3 - 4000000000000);  
  println(3000000000000 - 4);  
  println(3000000000000 - 4000000000000);  
}