mirror of https://github.com/zachjs/sv2v.git
7 lines
119 B
Systemverilog
7 lines
119 B
Systemverilog
|
|
// pattern: expected a non-negative number, but found 1'sd1
|
||
|
|
module top;
|
||
|
|
enum {
|
||
|
|
A[1'sd1]
|
||
|
|
} x;
|
||
|
|
endmodule
|