sv2v/test/error/struct_non_integer.sv

8 lines
171 B
Systemverilog
Raw Normal View History

// pattern: pattern index 1'bx is not an integer
2021-10-18 05:40:12 +02:00
// location: struct_non_integer.sv:4:5
module top;
struct packed {
logic x;
} s = '{ 1'bx: 1 };
endmodule