TypeScript/tests/cases/compiler/noImplicitAnyInCastExpression.ts
Mohamed Hegazy 4f21fb59a2 fix typo
2014-09-08 12:08:15 -07:00

17 lines
359 B
TypeScript

//@noImplicitAny: true
// verify no noImplictAny errors reported with cast expression
interface IFoo {
a: number;
b: string;
}
// Expr type not assignable to target type
(<IFoo>{ a: null });
// Expr type assignable to target type
(<IFoo>{ a: 2, b: undefined });
// Neither types is assignable to each other
(<IFoo>{ c: null });