TypeScript/tests/cases/compiler/checkTypePredicateForRedundantProperties.ts

4 lines
82 B
TypeScript
Raw Normal View History

2017-08-08 22:06:12 +02:00
function addProp2(x: any): x is { a: string; a: string; } {
return true;
}