summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Math/max/15.8.2.11-1.js
blob: a504429170b87ad28cb2bc44cf506d96a99adc20 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.8.2.11-1
description: Math.max({}) is NaN
---*/

assert.sameValue(Math.max({}), NaN);

reportCompare(0, 0);