Sign in
webkit
/
WebKit
/
22b40a617649ec1443287057740cbb3a2725d856
/
.
/
LayoutTests
/
js
/
regress
/
script-tests
/
string-concat-pair-simple.js
blob: 731d46b6e58a0c976023042e4bce5e48c95cafb1 [
file
] [
log
] [
blame
]
function
foo
(
a
)
{
return
"foo"
+
a
;
}
var
result
;
for
(
var
i
=
0
;
i
<
1000000
;
++
i
)
result
=
foo
(
"hello"
);
if
(
result
!=
"foohello"
)
throw
"Error: bad result: "
+
result
;