Source code

Revision control

Copy as Markdown

Other Tools

'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);