diff options
Diffstat (limited to 'js/src/jit-test/tests/parser/bug-1298809.js')
-rw-r--r-- | js/src/jit-test/tests/parser/bug-1298809.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/parser/bug-1298809.js b/js/src/jit-test/tests/parser/bug-1298809.js new file mode 100644 index 000000000..b93c7b083 --- /dev/null +++ b/js/src/jit-test/tests/parser/bug-1298809.js @@ -0,0 +1,6 @@ +function f() { + if (0) + function g() x; + else; +} +f(); |