Skip to content

Commit da4547f

Browse files
committed
Responding to CR feedback
1 parent 4b1ff74 commit da4547f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: tests/baselines/reference/duplicateVarAndImport.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
//// [duplicateVarAndImport.ts]
22
// no error since module is not instantiated
3+
34
var a;
4-
module M {}
5+
module M { }
56
import a = M;
67

78
//// [duplicateVarAndImport.js]

Diff for: tests/cases/compiler/duplicateVarAndImport.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// no error since module is not instantiated
2+
23
var a;
3-
module M {}
4+
module M { }
45
import a = M;

0 commit comments

Comments
 (0)