mirror of https://github.com/zachjs/sv2v.git
12 lines
235 B
Systemverilog
12 lines
235 B
Systemverilog
|
|
// pattern: export of PkgA::Bar, but Bar was never imported
|
||
|
|
package PkgA;
|
||
|
|
localparam Bar = 2;
|
||
|
|
endpackage
|
||
|
|
package PkgB;
|
||
|
|
export PkgA::Bar;
|
||
|
|
localparam Foo = 1;
|
||
|
|
endpackage
|
||
|
|
module top;
|
||
|
|
initial $display(PkgB::Foo);
|
||
|
|
endmodule
|