blob: 955c2abdda32b88e195c92e33acee782afbd448a [file] [log] [blame]
/*
:name: isunbounded_function
:description: $isunbounded test
:should_fail: 0
:tags: 20.6
:type: simulation parsing
*/
module top();
parameter int i = $;
initial begin
$display(":assert: (%d == 1)", $isunbounded(1));
end
endmodule