swc/crates/swc_ecma_parser/tests/tsc/templateStringInFunctionExpression.ts

4 lines
71 B
TypeScript

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