blob: cf0afff1c905224d5645a70b43a1e82e35e2e86c [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// Copyright 2015 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00005function store(v) {
6 var re = /(?=[d#.])/;
7 re.a = v;
8 return re;
9}
10
11var re1 = store(undefined);
12var re2 = store(42);
13
14assertEquals(re1.a, undefined);
15assertEquals(re2.a, 42);