blob: aa1f65db8927e78b70bb7af41ee43f86b94b798d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.1.1.1_A1
description: The initial value of NaN is NaN
---*/
assert(NaN !== NaN);
reportCompare(0, 0);
|