verilator/test_regress/t/t_vlt_warn.v
Stefan Wallentowitz b7665a88db
Rename msg to rule in configuration files (#2080)
Rename the -msg switch to -rule in configuration files as it is more
clear.

resolves #2068
2019-12-30 19:15:43 +01:00

31 lines
668 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2010 by Wilson Snyder.
// Try inline config
`ifdef verilator
`verilator_config
lint_off -rule CASEX -file "t/t_vlt_warn.v"
`verilog
`endif
module t;
reg width_warn_var_line18 = 2'b11; // Width warning - must be line 18
reg width_warn2_var_line19 = 2'b11; // Width warning - must be line 19
reg width_warn3_var_line20 = 2'b11; // Width warning - must be line 20
initial begin
casex (1'b1)
1'b0: $stop;
endcase
$write("*-* All Finished *-*\n");
$finish;
end
endmodule