blob: 4fbbc3b9ac55c3ad5ba0172e7c7b6a4fa8d2981d [file] [log] [blame]
/*
:name: integers-unsized-illegal
:description: Integer literal constants
:should_fail: 1
:tags: 5.7.1
*/
module top();
logic [31:0] a;
initial begin
a = 4af; // is illegal (hexadecimal format requires 'h)
end
endmodule