TypeScript/tests/baselines/reference/templateStringWithEmbeddedNewOperatorES6.types

7 lines
203 B
Text
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedNewOperatorES6.ts ===
var x = `abc${ new String("Hi") }def`;
>x : string
>new String("Hi") : String
>String : StringConstructor