as i was looking in the SV LRM i saw class declaration as [virtual] class [lifetime] class_identifier
is it referring to
class static sample;
endclass : sample
/ or /
class automatic sample;
endclass : automatic
if so is it works similar like we declare in functions i.e
function static sample();
endfunction : sample
which defines the local variables of function as “static” ?