Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
24b1c6d5d1c71459ed0a09056e0f352c125383ac
/
.
/
src
/
Testcases
/
Zachjs
/
basic
/
header_import.sv
blob: 76ab70bdd92dde9e01227568518b33d9d6c7a695 [
file
]
package
P
;
localparam FOO
=
10
;
endpackage
module
top
import
P
::
FOO
;
;
initial
begin
$display
(
FOO
);
end
endmodule