summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/void/S11.4.2_A4_T6.js
blob: e936bed38c3cc1b5e819e6292d95fcb79a7ba6c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Operator "void" evaluates UnaryExpression and returns undefined
es5id: 11.4.2_A4_T6
description: Checking Simple Assignment operator
---*/

//CHECK#1
var x = 0;
if (void (x = 1) !== undefined) {
  throw new Test262Error('#1: var x = 0; void (x = 1) === undefined. Actual: ' + (void (x = 1)));
} else {
  if (x !== 1) {
    throw new Test262Error('#1: var x = 0; void (x = 1); x === 1. Actual: ' + (x));
  } 
}

reportCompare(0, 0);