10.1.1-8gs.js (445B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 10.1.1-8gs 6 description: > 7 Strict Mode - Use Strict Directive Prologue is ''use strict';' 8 which appears twice in the code 9 negative: 10 phase: parse 11 type: SyntaxError 12 flags: [raw] 13 ---*/ 14 15 "use strict"; 16 "use strict"; 17 throw "Test262: This statement should not be evaluated."; 18 var public = 1;