babel/test/fixtures/traceur/Scope/Error_FunctionExpressionInBlock.js
2015-01-04 19:40:09 +11:00

11 lines
216 B
JavaScript

// Options: --block-binding
// Error: functionExpression is not defined
{
(function functionExpression() {
return 'inner';
});
functionExpression; // function expression doesn't add name to the scope.
}