I would like to confirm my understanding of local and protected in a SV class.
local variable - this is local to the class where it is specified. Neither it is available in the derived class or module that instantiates this class
protected variable - this is not available in the module that instantiates but is available to the derived class
I assume my understanding is correct.
Another question, is it possible to change the access type of a variable in the derived class, that is defined in the base class.
To elaborate, x variable is declared as protected in base class. Can it be changed to local in derived class closing its access for the subsequent derived classes?