mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Add test case for nested namespace
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
/// <reference path="fourslash.ts" />
|
||||
|
||||
//// [|let t: A/*0*/.B.I;|]
|
||||
|
||||
// @Filename: ./module.ts
|
||||
//// export namespace A {
|
||||
//// export namespace B {
|
||||
//// export interface I { }
|
||||
//// }
|
||||
//// }
|
||||
|
||||
verify.importFixAtPosition([
|
||||
`import { A } from "./module";
|
||||
|
||||
let t: A.B.I;`
|
||||
]);
|
||||
Reference in New Issue
Block a user