Files

7 lines
119 B
Systemverilog
Raw Permalink Normal View History

2021-12-10 13:16:34 -07:00
// pattern: expected a non-negative number, but found 1'sd1
module top;
enum {
A[1'sd1]
} x;
endmodule