mirror of
https://github.com/tc39/test262.git
synced 2025-12-09 14:59:43 +01:00
14 lines
441 B
Plaintext
14 lines
441 B
Plaintext
// Copyright (C) 2016 Kevin Gibbons. All rights reserved.
|
|
// Copyright (C) 2018 Leo Balter. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
desc: Module namespace objects lack a Symbol.toStringTag
|
|
template: namespace
|
|
features: [Symbol.iterator]
|
|
---*/
|
|
|
|
//- import
|
|
import('./module-code_FIXTURE.js')
|
|
//- body
|
|
assert.sameValue(Object.prototype.hasOwnProperty.call(ns, Symbol.iterator), false);
|