TypeScript/tests/baselines/reference/templateStringWithEmbeddedNewOperator.types

7 lines
200 B
Plaintext
Raw Normal View History

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