TypeScript/tests/cases/compiler/arrayCast.ts

6 lines
325 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// Should fail. Even though the array is contextually typed with { id: number }[], it still
// has type { foo: string }[], which is not assignable to { id: number }[].
<{ id: number; }[]>[{ foo: "s" }];
// Should succeed, as the {} element causes the type of the array to be {}[]
<{ id: number; }[]>[{ foo: "s" }, {}];