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

6 lines
157 B
TypeScript

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