TypeScript/tests/baselines/reference/templateStringWithPropertyAccess.js

6 lines
157 B
TypeScript
Raw Normal View History

//// [templateStringWithPropertyAccess.ts]
`abc${0}abc`.indexOf(`abc`);
//// [templateStringWithPropertyAccess.js]
("abc" + 0 + "abc").indexOf("abc");