Skip to content

Commit

Permalink
Responding to CR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
danquirk committed Jul 15, 2014
1 parent 4b1ff74 commit da4547f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/baselines/reference/duplicateVarAndImport.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
//// [duplicateVarAndImport.ts]
// no error since module is not instantiated

var a;
module M {}
module M { }

This comment has been minimized.

Copy link
@danquirk

danquirk Jul 15, 2014

Author Member

hello

import a = M;

//// [duplicateVarAndImport.js]
Expand Down
3 changes: 2 additions & 1 deletion tests/cases/compiler/duplicateVarAndImport.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// no error since module is not instantiated

var a;
module M {}
module M { }
import a = M;

0 comments on commit da4547f

Please sign in to comment.