summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/isFinite/return-abrupt-from-tonumber-number-symbol.js
blob: dcdd07b5d5b9e968417f1b721588c3b2616845cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2016 The V8 Project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-isfinite-number
description: >
  Throws a TypeError if number is a Symbol
info: |
  isFinite (number)

  1. Let num be ? ToNumber(number).
features: [Symbol]
---*/

var s = Symbol(1);

assert.throws(TypeError, function() {
  isFinite(s);
});

reportCompare(0, 0);