TypeScript/tests/baselines/reference/templateStringInTypeOfES6.js

6 lines
142 B
TypeScript
Raw Normal View History

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