You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class C;
rand int i;
function void f();
rand_mode(0);
this.rand_mode(0);
i.rand_mode(0);
endfunction
endclass
module top;
C c;
function make();
c = new();
c.rand_mode(0);
endfunction
initial begin
make();
end
endmodule
The text was updated successfully, but these errors were encountered:
From: MikePopoloski/slang#482
Add a lint rule to check COMPAT
The text was updated successfully, but these errors were encountered: