blob: b426788151a98f142b5c71b666781378b84a5d5b [file] [log] [blame]
/*
:name: arrays-packed-quering-functions-low
:description: Test quering functions support on packed arrays
:should_fail: 0
:tags: 7.11 7.4.1
*/
module top ();
bit [7:0] arr;
initial begin
$display(":assert: (%d == 0)", $low(arr));
end
endmodule