Files
sv2v/test/core/struct_const.v
Zachary Snow 0fb3a41ed3 additional test coverage
- test deprecated flags
- test struct const edge cases
- test implicit net edge cases
- test dump-prefix
2023-05-14 00:54:22 -04:00

7 lines
132 B
Verilog

module top;
localparam P = 32'd1;
localparam Q = 32'd3;
localparam R = 832'b0;
initial $display(P, Q, R);
endmodule