sv2v/test/basic/package_implied.v

6 lines
96 B
Verilog

module top;
localparam P_X = 10;
localparam Y = P_X;
initial $display(Y);
endmodule