test262/test/built-ins/WeakSet/symbol-disallowed-as-weakse...

16 lines
400 B
JavaScript
Raw Normal View History

// Copyright (C) 2013 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 23.4.3.1_S2
2017-06-29 22:03:46 +02:00
esid: sec-weakset.prototype.add
description: >
2015-06-11 18:41:52 +02:00
Symbol may not be used as a WeakSet entry
2017-09-07 21:06:13 +02:00
features: [Symbol, WeakSet]
---*/
var weakset = new WeakSet();
var sym = Symbol();
assert.throws(TypeError, function() {
weakset.add(sym);
});