blob: 76ab70bdd92dde9e01227568518b33d9d6c7a695 [file] [log] [blame]
package P;
localparam FOO = 10;
endpackage
module top
import P::FOO;
;
initial begin
$display(FOO);
end
endmodule