Cast TSubclassOf<> to some other class in hierarchy

Say I have

TSubclassOf<UMyObject> ClassPointer;

And I have

UMySuperClass : public UMyObject

Now I pass to ClassPointer an blueprint derived from UMySuperClass

Can I cast ClassPointer to UMySuperClass ? I don’t want to instance this class, all I need, is to get default CDO of UMySuperClass.