TypeScript/tests/baselines/reference/unicodeExtendedEscapesInTemplates09_ES5.types

10 lines
281 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates09_ES5.ts ===
// ES6 Spec - 10.1.1 Static Semantics: UTF16Encoding (cp)
// 2. If cp ≤ 65535, return cp.
// (10000 == 65536)
var x = `\u{10000}`;
>x : string
2015-04-13 21:36:11 +02:00
>`\u{10000}` : string