TypeScript/tests/cases/fourslash/completionListInImportClause03.ts
2015-07-09 19:22:05 -07:00

16 lines
412 B
TypeScript

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