mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 17:31:40 +02:00
6 lines
158 B
Systemverilog
6 lines
158 B
Systemverilog
// pattern: unexpected arguments \(0, 1\) passed to enum method x.next
|
|
// location: enum_method_2.sv:4:5
|
|
module top;
|
|
enum {X} x = x.next(0, 1);
|
|
endmodule
|