michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * Literal :: NullLiteral michael@0: * michael@0: * @path ch07/7.8/7.8.1/S7.8.1_A1_T2.js michael@0: * @description Check RegExp("0").exec("1") === null michael@0: */ michael@0: michael@0: //CHECK#1 michael@0: if (RegExp("0").exec("1") !== null) { michael@0: $ERROR('#1: RegExp("0").exec("1") === null'); michael@0: } michael@0: michael@0: