view graal/com.oracle.truffle.sl.test/tests/FunctionLiteral.sl @ 17152:d48738c27e7d

Truffle: restore "opt fail" message on compilation failure
author Andreas Woess <andreas.woess@jku.at>
date Thu, 18 Sep 2014 19:02:02 +0200
parents ff3136ecb5a7
children
line wrap: on
line source

function add(a, b) {
  return a + b;
}

function sub(a, b) {
  return a - b;
}

function foo(f) {
  println(f(40, 2));
}

function main() {
  foo(add);
  foo(sub);
}