iverilog/ivtest/ivltests/automatic_error8.v

16 lines
140 B
Verilog

module automatic_error();
reg global;
task automatic auto_task;
reg local;
begin:block
force local = global;
end
endtask
endmodule