Skip to content

Commit e532744

Browse files
committed
Add test case for nested namespace
1 parent aa706d7 commit e532744

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/// <reference path="fourslash.ts" />
2+
3+
//// [|let t: A/*0*/.B.I;|]
4+
5+
// @Filename: ./module.ts
6+
//// export namespace A {
7+
//// export namespace B {
8+
//// export interface I { }
9+
//// }
10+
//// }
11+
12+
verify.importFixAtPosition([
13+
`import { A } from "./module";
14+
15+
let t: A.B.I;`
16+
]);

0 commit comments

Comments
 (0)