Files

6 lines
149 B
Systemverilog
Raw Permalink Normal View History

2026-08-18 08:52:11 -04:00
// 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