nashorn/test/script/basic/es6/block-function-decl.js.EXPECTED
author hannesw
Thu, 04 Sep 2014 15:37:14 +0200
changeset 26377 028dad61662f
permissions -rw-r--r--
8051889: Implement block scoping in symbol assignment and scope computation Reviewed-by: attila, lagergren

function f() {
        print("in f");
    }
in f
function f() {
        print("in f");
    }
in f
undefined
ReferenceError: "f" is not defined