TypeScript/tests/baselines/reference/templateStringInArray.types
Daniel Rosenwasser b704f19502 Merge branch 'letAndConst' into templates
Conflicts:
	src/compiler/diagnosticInformationMap.generated.ts
	src/compiler/diagnosticMessages.json
2014-10-23 16:03:53 -07:00

6 lines
184 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringInArray.ts ===
var x = [1, 2, `abc${ 123 }def`];
>x : (string | number)[]
>[1, 2, `abc${ 123 }def`] : (string | number)[]