summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Symbol/prototype/toString/toString-default-attributes-strict-strict.js
blob: d33a0c67478a30a25a702fe5659e77c131ebad08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'use strict';
// Copyright (C) 2013 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 19.4
description: >
    Symbol property get and set, strict
flags: [onlyStrict]
features: [Symbol]
---*/

var sym = Symbol("66");

assert.throws(TypeError, function() {
  sym.toString = 0;
});

assert.throws(TypeError, function() {
  sym.valueOf = 0;
});

reportCompare(0, 0);