Files
sv2v/test/error/struct_non_integer.sv

8 lines
171 B
Systemverilog
Raw Permalink Normal View History

2021-06-20 15:30:21 -04:00
// pattern: pattern index 1'bx is not an integer
2021-10-17 21:40:12 -06:00
// location: struct_non_integer.sv:4:5
2021-06-20 15:30:21 -04:00
module top;
struct packed {
logic x;
} s = '{ 1'bx: 1 };
endmodule