nashorn/test/script/basic/funcconstructor.js.EXPECTED
author ksrini
Thu, 21 Nov 2013 12:01:45 -0800
changeset 21742 e61b55843e88
parent 17973 d220c8157f25
permissions -rw-r--r--
8028645: [infra] purge applet demos from the Solaris distros Reviewed-by: erikj

anon func
225
function (x) {
print('anon func'); return x*x;
}
syntax error? true
SyntaxError: <function>:1:13 Missing close quote
print('hello)
             ^
done