blob: 576266a95abbe46659331876fbcc0ca84689e24c [file] [log] [blame]
/*
:name: signed_func
:description: $signed() test
:should_fail: 0
:tags: 11.7
*/
module top();
logic signed [7:0] a;
initial begin
a = $signed(4'b1000);
end
endmodule