test262/test/suite/chapter10/10.5/10.5-1gs.js

17 lines
264 B
JavaScript
Raw Normal View History

/**
* @path chapter10/10.5/10.5-1gs.js
* @description Strict Mode - arguments cannot be assigned to in a strict function
2011-09-24 20:13:49 +02:00
* @onlyStrict
2011-09-26 02:05:32 +02:00
* @negative ^((?!NotEarlyError).)*$
*/
2011-09-24 02:42:36 +02:00
"use strict";
throw NotEarlyError;
function f_10_5_1_gs(){
arguments = 7;
}