simplify_arg_shadow.sv 182 Bytes
Newer Older
1 2 3 4 5 6 7 8
module top;
    localparam i = 1234;
    function automatic integer f;
        input integer i;
        f = i + 1;
    endfunction
    initial $display(i, f(0), f(i + 1));
endmodule