aboutsummaryrefslogtreecommitdiffstats
path: root/external/contributions/Google/sputniktests/tests/Conformance/11_Expressions/11.1_Primary_Expressions/11.1.5_Object_Initializer/S11.1.5_A4.2.js
blob: d2fbf4d1e41dd208c0ccd3f53b5db2185a5da9f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
* @name: S11.1.5_A4.2;
* @section: 11.1.5;
* @assertion: The PropertyName is not nullLiteral;
* @description: Checking if execution of "var object = {null : true}" fails;
* @negative
*/

//CHECK#1
var object = {null : true};