mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 09:44:27 +02:00
6 lines
149 B
Systemverilog
6 lines
149 B
Systemverilog
// pattern: unexpected argument 0 passed to enum method x.first
|
|
// location: enum_method_1.sv:4:5
|
|
module top;
|
|
enum {X} x = x.first(0);
|
|
endmodule
|