Fix the union property kind if the property is union of exported variable of module

Fixes #929
This commit is contained in:
Sheetal Nandi
2014-11-06 19:18:20 -08:00
parent 8ab038f1a3
commit 127aa49e55
2 changed files with 15 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
///<reference path="fourslash.ts" />
////module E {
//// export var n = 1;
////}
////module F {
//// export var n = 1;
////}
////var q: typeof E | typeof F;
////var j = q./*1*/
goTo.marker('1');
verify.completionListContains('n', "(property) n: number");