add additional template literal test

This commit is contained in:
Sebastian McKenzie 2014-10-08 15:37:25 +11:00
parent 9f08c39c75
commit 1123741277
2 changed files with 2 additions and 0 deletions

View File

@ -0,0 +1 @@
var foo = `test ${foo + bar}`;

View File

@ -0,0 +1 @@
var foo = "test " + (foo + bar);