summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/lexical-environment/block-scoped-functions-annex-b-same-name.js
blob: b89f91c59a4d1a827d20586d1e67bd802467b9f4 (plain)
1
2
3
4
5
6
7
{
  function f() { return "inner"; }
}

function f() { return "outer"; }

reportCompare(f(), "inner");