aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/chapter07/7.6/7.6.1/7.6.1.2-1gs.js
blob: 59c2330d40ad40e705338359049733a0926da502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12


/**
 * @path chapter07/7.6/7.6.1/7.6.1.2-1gs.js
 * @description Strict Mode - SyntaxError is thrown when FutureReservedWord 'implements' occurs in strict mode code
 * @onlyStrict
 * @negative NotEarlyError
 */

"use strict";
throw NotEarlyError;
var implements = 1;