TypeScript/tests/cases/fourslash/completionListInObjectBindingPattern13.ts
2015-07-01 13:25:51 -07:00

20 lines
423 B
TypeScript

/// <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");
verify.not.completionListAllowsNewIdentifier();