Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / js / regress / script-tests / string-concat-simple.js
blob6f662dc4145d27b856b99436d0db2fe065120ca7
1 function foo(a) {
2     return "foo" + a + "bar";
5 var result;
6 for (var i = 0; i < 1000000; ++i)
7     result = foo("hello");
9 if (result != "foohellobar")
10     throw "Error: bad result: " + result;