blob: 449c6ef087be2ef288848c3eaf310f3475a456b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* -*- indent-tabs-mode: nil; js-indent-level: 4 -*- */
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
"use strict";
try {
eval("(function() { eval(); function eval() {} })");
assertEq(0, 1);
} catch (e) {
assertEq(e.name, "SyntaxError");
}
reportCompare(0, 0, "ok");
|