==== tests/cases/compiler/InvalidNonInstantiatedModule.ts (2 errors) ====
    module M {
        export interface Point { x: number; y: number }
    }
    
    var m = M; // Error, not instantiated can not be used as var
            ~
!!! InvalidNonInstantiatedModule.ts(5,9): error TS2095: Could not find symbol 'M'.
    
    var x: typeof M; // Error only a namespace
                  ~
!!! InvalidNonInstantiatedModule.ts(7,15): error TS2095: Could not find symbol 'M'.
    