package_export_missing.sv 235 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
// 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