blob: 241b968217e010df294eb79b57ca8cbd9df4aaaa [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 19.4.3.4
description: Behavior when `this` value is a Symbol
info: |
1. Let s be the this value.
2. If Type(s) is Symbol, return s.
features: [Symbol.toPrimitive]
---*/
assert.sameValue(Symbol.toPrimitive[Symbol.toPrimitive](), Symbol.toPrimitive);