blob: 393af609d54d69f9aadc4c35ca4f1a25d8afbb7a [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Result of boolean conversion from boolean value is no conversion
es5id: 9.2_A3_T2
description: true and false convert to Boolean by implicit transformation
---*/
// CHECK#1
if (!(true) !== false) {
$ERROR('#1: !(true) === false. Actual: ' + (!(true)));
}
// CHECK#2
if (!(false) !== true) {
$ERROR('#2: !(false) === true. Actual: ' + (!(false)));
}