baseTypeWrappingInstantiationChain.ts(14,5): error TS2564: Property 'property' has no initializer and is not definitely assigned in the constructor.


==== baseTypeWrappingInstantiationChain.ts (1 errors) ====
    class CBaseBase<T3> {
        constructor(x: Parameter<T3>) { }
    }
    
    class CBase<T2> extends CBaseBase<Wrapper<T2>> {
    
    }
    
    class Parameter<T4> {
        method(t: T4) { }
    }
    
    class Wrapper<T5> {
        property: T5;
        ~~~~~~~~
!!! error TS2564: Property 'property' has no initializer and is not definitely assigned in the constructor.
    }
    
    class C<T1> extends CBase<T1> {
        public works() {
            new CBaseBase<Wrapper<T1>>(this);
        }
        public alsoWorks() {
            new CBase<T1>(this); // Should not error, parameter is of type Parameter<Wrapper<T1>>
        }
    
        public method(t: Wrapper<T1>) { }
    }
    