-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Labels
BugA bug in TypeScriptA bug in TypeScriptDomain: lib.d.tsThe issue relates to the different libraries shipped with TypeScriptThe issue relates to the different libraries shipped with TypeScript
Milestone
Description
TypeScript Version: 3.7.0-dev.20191018
Search Terms:
- Array
- @@unscopables
Code
const x = [][Symbol.unscopables];
console.log(x.copyWithin);
const y = [][Symbol.unscopables]();
console.log(y.copyWithin);
Expected behavior:
x.copyWithin
occurs no error, and [][Symbol.unscopables]()
occurs type error.
Actual behavior:
x.copyWithin
occurs type error, and [][Symbol.unscopables]()
occurs runtime exception.
Related Issues:
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptDomain: lib.d.tsThe issue relates to the different libraries shipped with TypeScriptThe issue relates to the different libraries shipped with TypeScript