Files
iverilog/ivtest/ivltests/wild_cmp_err.v
T
Stephen Williams cea237b407 Add ivtest to the iverilog source tree
By adding ivtest to the iverilog source tree, it is easier to keep
the regression test synchronized with the source that is being tested.
This should be especially helpful for PRs that add a new feature, and
have a matching ivtest PR with the regression test for that feature.
2022-01-15 10:18:50 -08:00

11 lines
207 B
Verilog

module top;
parameter weq1 = 2'b01 ==? 0.0;
parameter weq2 = 0.0 ==? 2'b01;
parameter wneq1 = 2'b01 !=? 0.0;
parameter wneq2 = 0.0 !=? 2'b01;
initial begin
$display("FAILED");
end
endmodule