TypeScript/tests/baselines/reference/templateStringInTypeOfES6.js
2014-10-23 15:06:05 -07:00

6 lines
142 B
TypeScript

//// [templateStringInTypeOfES6.ts]
var x = typeof `abc${ 123 }def`;
//// [templateStringInTypeOfES6.js]
var x = typeof `abc${123}def`;