tests/cases/compiler/moduleInTypePosition1_1.ts(3,14): error TS2304: Cannot find name 'WinJS'.


==== tests/cases/compiler/moduleInTypePosition1_1.ts (1 errors) ====
    ///<reference path='moduleInTypePosition1_0.ts'/>
    import WinJS = require('./moduleInTypePosition1_0');
    var x = (w1: WinJS) => { };
                 ~~~~~
!!! error TS2304: Cannot find name 'WinJS'.
    
==== tests/cases/compiler/moduleInTypePosition1_0.ts (0 errors) ====
    export class Promise {
        foo: string;
    }
    