summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/literals/regexp/named-groups/forward-reference.js
blob: 2f8588f7510025842cd7571c01d4287069b4db36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2017 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: Named groups can be forward references.
esid: sec-atomescape
features: [regexp-named-groups]
---*/

assert(/\k<a>(?<a>x)/.test("x"));

reportCompare(0, 0);