Any one please resolve this code Error In UVM Subscriber write function

In reply to chr_sue:

In reply to sriram pantla:
The write function is pure virtual function. Pure means there is no implementation and you have to provide an implementation. For this reason you have to follow the naming of the base class.

Yes, this is right, in my example code above, I used “t” as argument to write() function, but was not doing so in my actual code. Thanks