Files
iverilog/ivtest/ivltests/sv_export3.v
T
Lars-Peter Clausen d868983b9c Add regression tests for package export
Check that package exports are supported. Also check for various scenarios
where package exports should fail.

Signed-off-by: Lars-Peter Clausen <[email protected]>
2023-01-17 06:22:35 -08:00

26 lines
371 B
Verilog

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