aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/chapter12/12.14/12.14.1/12.14.1-1gs.js
blob: 33ff22cee516ada7c1008316805d722cb8a0eef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12


/**
 * @path chapter12/12.14/12.14.1/12.14.1-1gs.js
 * @description Strict Mode - SyntaxError is thrown if a TryStatement with a Catch occurs within strict code and the Identifier of the Catch production is eval
 * @onlyStrict
 * @negative EarlyErrorRePat
 */

"use strict";
throw NotEarlyError;
try { } catch (eval) { }