summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/asi/S7.9_A9_T6.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/asi/S7.9_A9_T6.js')
-rw-r--r--js/src/tests/test262/language/asi/S7.9_A9_T6.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/asi/S7.9_A9_T6.js b/js/src/tests/test262/language/asi/S7.9_A9_T6.js
new file mode 100644
index 0000000000..25b861fd3e
--- /dev/null
+++ b/js/src/tests/test262/language/asi/S7.9_A9_T6.js
@@ -0,0 +1,18 @@
+// |reftest| error:SyntaxError
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: Check Do-While Statement for automatic semicolon insertion
+es5id: 7.9_A9_T6
+description: Execute do \n while(false)
+negative:
+ phase: parse
+ type: SyntaxError
+---*/
+
+$DONOTEVALUATE();
+
+//CHECK#1
+do
+while (false)