Skip to content

Commit 58a99f3

Browse files
committed
Accept new typeWriter baseline
1 parent d02d9bf commit 58a99f3

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
=== tests/cases/compiler/B.ts ===
2+
///<reference path="A.ts" />
3+
module A { ; }
4+
>A : typeof A
5+
6+
module B {
7+
>B : typeof B
8+
9+
export function f(): A.I { return null; }
10+
>f : () => I
11+
>A : A
12+
>I : I
13+
}
14+
15+
16+
=== tests/cases/compiler/A.ts ===
17+
18+
module A { export interface I {} }
19+
>A : typeof A
20+
>I : I
21+

0 commit comments

Comments
 (0)