mirror of https://github.com/tc39/test262.git
14 lines
290 B
JavaScript
14 lines
290 B
JavaScript
|
|
||
|
|
||
|
/**
|
||
|
* @path ch10/10.1/10.1.1/10.1.1-8gs.js
|
||
|
* @description Strict Mode - Use Strict Directive Prologue is ''use strict';' which appears twice in the code
|
||
|
* @noStrict
|
||
|
* @negative ^((?!NotEarlyError).)*$
|
||
|
*/
|
||
|
|
||
|
"use strict";
|
||
|
"use strict";
|
||
|
throw NotEarlyError;
|
||
|
var public = 1;
|