mirror of https://github.com/zachjs/sv2v.git
9 lines
170 B
Systemverilog
9 lines
170 B
Systemverilog
|
|
// pattern: declaration of X conflicts with prior import of P::X
|
||
|
|
package P;
|
||
|
|
localparam X = 1;
|
||
|
|
endpackage
|
||
|
|
module top;
|
||
|
|
import P::X;
|
||
|
|
localparam X = 2;
|
||
|
|
endmodule
|