Files
sv2v/test/basic/package_implied.v
T
Zachary Snow 661703a8c2 address import resolution issues
- fix wildcard imports shadowing other items
- fix explicit imports depending on other items
- fix example export in package.sv
2020-06-18 21:18:08 -04:00

6 lines
96 B
Verilog

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