mirror of https://github.com/zachjs/sv2v.git
12 lines
216 B
Systemverilog
12 lines
216 B
Systemverilog
|
|
// 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
|