mirror of https://github.com/zachjs/sv2v.git
7 lines
108 B
Systemverilog
7 lines
108 B
Systemverilog
|
|
// pattern: unexpected signed applied to enum
|
||
|
|
module top;
|
||
|
|
enum {
|
||
|
|
A, B
|
||
|
|
} signed x;
|
||
|
|
endmodule
|