Austin Rovinski
07/03/2025, 10:55 PMmodule dut();
logic dont_look_at_me;
endmodule
and
module testbench();
dut inst();
initial begin
$display ("%i", inst.dont_look_at_me)
end
endmodule
Is there a way in either the language or the simulator (VCS) to force a compilation error on dut.dont_look_at_me
?