mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 09:44:27 +02:00
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
|