mirror of https://github.com/zachjs/sv2v.git
7 lines
152 B
Systemverilog
7 lines
152 B
Systemverilog
|
|
// pattern: invalid pattern key -1 is not a type, field name, or index
|
||
|
|
module top;
|
||
|
|
struct packed {
|
||
|
|
logic x;
|
||
|
|
} s = '{ -1: 1 };
|
||
|
|
endmodule
|