TypeScript/tests/cases/fourslash/completionWithDotFollowedByNamespaceKeyword.ts
2015-06-09 18:09:14 -07:00

12 lines
292 B
TypeScript

/// <reference path='fourslash.ts'/>
////namespace A {
//// function foo() {
//// if (true) {
//// B./**/
//// namespace B {
//// export function baz() { }
////}
goTo.marker();
verify.completionListContains("baz", "function B.baz(): void");