Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
eval-func-decl-in-block-scope-and-bind-to-top-eval-scope.js
blob: f97ee3ab5d6a504853becf445a6754e8fe66e270 [
file
] [
log
] [
blame
]
var
init1
;
(
function
()
{
eval
(
'
\
init1
=
f
;
\
{
\
function
f
()
{}
\
}{
function
f
()
{
}
}
'
);
}());
if
(
init1
!==
undefined
)
throw
new
Error
(
'Wrong binding of the function.'
);