iverilog/ivtest/ivltests/sv_export1.v

26 lines
368 B
Coq
Raw Normal View History

// Check that it is possible to explicitly export an identifier and import it
// from another scope.
package P1;
integer x = 123;
endpackage
package P2;
import P1::x;
export P1::x;
endpackage
module test;
import P2::x;
initial begin
if (x == 123) begin
$display("PASSED");
end else begin
$display("FAILED");
end
end
endmodule