Merge pull request #3697 from Microsoft/testObjectBindingCompletionWithUnionTypes

Add test case for completion when destructuring from a union type.
This commit is contained in:
Daniel Rosenwasser 2015-07-01 13:10:50 -07:00
commit 379ca11a8b

View File

@ -0,0 +1,19 @@
/// <reference path='fourslash.ts'/>
////interface I {
//// x: number;
//// y: string;
//// z: boolean;
////}
////
////interface J {
//// x: string;
//// y: string;
////}
////
////let { /**/ }: I | J = { x: 10 };
goTo.marker();
verify.completionListContains("x");
verify.completionListContains("y");
verify.not.completionListContains("z");