summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/identifiers/val-underscore.js
blob: 059c6e72ccf4ff282607a8b9d6a6a93b721715ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: "IdentifierStart :: _"
es5id: 7.6_A1.3_T1
description: Create variable _
---*/

//CHECK#1
var _ = 1;

assert.sameValue(_, 1);

reportCompare(0, 0);