TypeScript/tests/baselines/reference/templateStringInTypeOf.js

6 lines
143 B
TypeScript
Raw Normal View History

//// [templateStringInTypeOf.ts]
var x = typeof `abc${ 123 }def`;
//// [templateStringInTypeOf.js]
var x = typeof ("abc" + 123 + "def");