mirror of https://github.com/zachjs/sv2v.git
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
|