diff options
Diffstat (limited to 'js/src/tests/ecma_3/LexicalConventions/7.8.3-01.js')
-rw-r--r-- | js/src/tests/ecma_3/LexicalConventions/7.8.3-01.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/js/src/tests/ecma_3/LexicalConventions/7.8.3-01.js b/js/src/tests/ecma_3/LexicalConventions/7.8.3-01.js new file mode 100644 index 000000000..e323738f0 --- /dev/null +++ b/js/src/tests/ecma_3/LexicalConventions/7.8.3-01.js @@ -0,0 +1,23 @@ +/* + * Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/licenses/publicdomain/ + */ + +var BUGNUMBER = 523401; +var summary = 'identifier starts immediately after numeric literal'; +var expect = "SyntaxError: identifier starts immediately after numeric literal"; +var actual; + +printBugNumber(BUGNUMBER); +printStatus(summary); + +try { + eval("actual = 0in [1]"); +} catch (e) { + actual = e; +} +actual = '' + actual; + +reportCompare(expect, actual, summary); + +printStatus("All tests passed!"); |