TypeScript/tests/cases/conformance/es6/templates/templateStringInFunctionExpression.ts
2014-10-23 15:06:05 -07:00

4 lines
74 B
TypeScript

var x = function y() {
`abc${ 0 }def`
return `abc${ 0 }def`;
};