Add analogous export test.

This commit is contained in:
Daniel Rosenwasser 2015-07-10 17:33:56 -07:00
parent e5b8f87927
commit 55b39d45f6

View File

@ -0,0 +1,16 @@
/// <reference path="fourslash.ts" />
////declare module "M1" {
//// export var abc: number;
//// export var def: string;
////}
////
////declare module "M2" {
//// export { abc/**/ } from "M1";
////}
// Ensure we don't filter out the current item.
goTo.marker();
verify.completionListContains("abc");
verify.completionListContains("def");
verify.not.completionListAllowsNewIdentifier();