mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-04 08:45:29 +02:00
- `expr.name[idx]` considers `expr.name` could be a struct array - remove fallback struct type lookups which were guaranteed to fail
8 lines
141 B
Verilog
8 lines
141 B
Verilog
module top;
|
|
if (1) begin : blk
|
|
wire [3:0] s;
|
|
end
|
|
assign blk.s = 4'b1001;
|
|
initial #1 $display("%b", blk.s);
|
|
endmodule
|