1 2 3 4 5 6 7 8
|
//// [tests/cases/conformance/expressions/typeAssertions/duplicatePropertiesInTypeAssertions01.ts] ////
=== duplicatePropertiesInTypeAssertions01.ts ===
let x = <{a: number; a: number}>{};
>x : Symbol(x, Decl(duplicatePropertiesInTypeAssertions01.ts, 0, 3))
>a : Symbol(a, Decl(duplicatePropertiesInTypeAssertions01.ts, 0, 10), Decl(duplicatePropertiesInTypeAssertions01.ts, 0, 20))
>a : Symbol(a, Decl(duplicatePropertiesInTypeAssertions01.ts, 0, 10), Decl(duplicatePropertiesInTypeAssertions01.ts, 0, 20))
|