=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedInOperator.ts === var x = `abc${ "hi" in { hi: 10, hello: 20} }def`; >x : string >"hi" in { hi: 10, hello: 20} : boolean >{ hi: 10, hello: 20} : { hi: number; hello: number; } >hi : number >hello : number