blob: d7dd2276472c12b6924e00f199cfcd60b02c8e93 [file] [log] [blame]
/*
:name: arrays-packed-quering-functions-right
: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)", $right(arr));
end
endmodule