blob: f9b1d3f6b9c2932f2f9acff7a09fb16f532da80c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 7.8.5-2gs
description: Empty dynamic RegExp should not result in a SyntaxError
---*/
var re = new RegExp("");
reportCompare(0, 0);
|