michael@0: // Copyright 2011 Google Inc. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * @path ch13/13.2/S13.2_A8_T2.js michael@0: * @description check if "arguments" poisoning poisons michael@0: * "in" too michael@0: * @onlyStrict michael@0: */ michael@0: michael@0: "use strict"; michael@0: 'arguments' in function() {}; michael@0: michael@0: