internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts(2,5): error TS2564: Property 'aProp' has no initializer and is not definitely assigned in the constructor.


==== internalImportUnInstantiatedModuleMergedWithClassNotReferencingInstanceNoConflict.ts (1 errors) ====
    class A {
        aProp: string;
        ~~~~~
!!! error TS2564: Property 'aProp' has no initializer and is not definitely assigned in the constructor.
    }
    namespace A {
        export interface X { s: string }
    }
    
    namespace B {
        import Y = A;
    }
    