view graal/com.oracle.truffle.sl.test/tests/Null.sl @ 18556:2b8e460c4935

made HotSpotObjectConstantImpl.forObject() package-private
author Doug Simon <doug.simon@oracle.com>
date Wed, 26 Nov 2014 22:36:17 +0100
parents b16ec83edc73
children
line wrap: on
line source

/* The easiest way to generate null: a function without a return statement implicitly returns null. */
function null() {
}

function main() {  
  println(null());  
  println(null() == null());  
  println(null() != null());  
  println(null() == 42);  
  println(null() != 42);  
  println(null() == "42");  
  println(null() != "42");  
}