package_import_missing_package_item.sv 233 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
// pattern: could not find "ItemThatDoesNotExist" in package "Pkg"

package Pkg;
    localparam Foo = 1;
endpackage

package Wrap;
    localparam Foo = Pkg::ItemThatDoesNotExist;
endpackage

module top;
    import Wrap::*;
endmodule