package test

public trait CantMakeImmutableInSubclass {

    public trait Sub : test.CantMakeImmutableInSubclass.Super {
        public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
        public abstract override /*1*/ fun foo(): kotlin.(Mutable)List<kotlin.String!>!
    }

    public trait Super {
        public abstract fun dummy(): kotlin.Unit
        public abstract fun foo(): kotlin.(Mutable)Collection<kotlin.String!>!
    }
}
