Files

7 lines
110 B
Systemverilog
Raw Permalink Normal View History

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