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

6 lines
143 B
TypeScript

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