Files
sv2v/test/error/package_export_missing.sv

12 lines
235 B
Systemverilog
Raw Permalink Normal View History

2021-01-23 16:50:06 -07:00
// 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