package_export_wrong_2.sv 216 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
// pattern: could not find "Foo" in package "Bar"
package Bar;
    localparam Bar = 1;
endpackage
package Pkg;
    import Bar::*;
    export Bar::Foo;
endpackage
module top;
    initial $display(Pkg::Foo);
endmodule