blob: fe7de32f51a2c5decee88c1c370eabe4ba51e37e (
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: "Literal :: BooleanLiteral"
es5id: 7.8.2_A1_T1
description: "BooleanLiteral :: true"
---*/
//CHECK#1
if (Boolean(true) !== true) {
$ERROR('#1: Boolean(true) === true. Actual: Boolean(true) === ' + (Boolean(true)));
}
reportCompare(0, 0);
|