Merge pull request #1 from JaimeLynSchatz/JaimeLynSchatz/typofix

fix typo in 10.5 (fixes Bugzilla 1795)
This commit is contained in:
Brian Terlson 2014-07-10 13:40:27 -07:00
commit 4f15bf990b
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ function testcase() {
function _10_5_7_b_3_fun() {
arguments[1] = 12;
return arguments[0] = 30 && arguments[1] === 12;
return arguments[0] === 30 && arguments[1] === 12;
};
return _10_5_7_b_3_fun(30);