Sign in
webkit
/
WebKit
/
576a979610e4022489e162a6cf99857a249b2267
/
.
/
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"
);