mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
11 lines
204 B
Systemverilog
11 lines
204 B
Systemverilog
// pattern: procedural block contains a declaration after a statement
|
|
module top;
|
|
task t;
|
|
$display("t()");
|
|
endtask
|
|
initial begin
|
|
t;
|
|
localparam X = 3;
|
|
end
|
|
endmodule
|