Sign in
webkit
/
WebKit
/
11eb14dbd76d8d03d540dd8285a36f1a3b897832
/
.
/
LayoutTests
/
js
/
script-tests
/
dfg-use-function-as-variable.js
blob: a9e8caddf67ebd0e127f535c167e5846e53475f6 [
file
] [
log
] [
blame
]
description
(
"Tests what happens when you use a function as a variable."
);
function
run_tests
()
{
function
x
()
{
return
3
;
}
var
x
=
13
;
return
x
+
x
;
}
for
(
var
i
=
0
;
i
<
100
;
++
i
)
shouldBe
(
"run_tests()"
,
"26"
);