test262/test/suite/ch10/10.1/10.1.1/10.1.1-8gs.js

14 lines
290 B
JavaScript
Raw Normal View History

/**
* @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;