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


/**
 * @path chapter12/12.10/12.10.1/12.10.1-11gs.js
 * @description Strict Mode - SyntaxError is thrown when using with statement
 * @onlyStrict
 * @negative EarlyErrorRePat
 */

"use strict";
throw NotEarlyError;
with ({}) { }