mirror of https://github.com/zachjs/sv2v.git
12 lines
225 B
Systemverilog
12 lines
225 B
Systemverilog
|
|
package P;
|
||
|
|
localparam Bar = 1;
|
||
|
|
function automatic integer func;
|
||
|
|
localparam Bar = 2;
|
||
|
|
func = Bar + P::Bar;
|
||
|
|
endfunction
|
||
|
|
endpackage
|
||
|
|
module top;
|
||
|
|
import P::*;
|
||
|
|
initial $display(func());
|
||
|
|
endmodule
|