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