Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
b2c8950dbc163e2320c742c5badef8d829b836c0
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-5
/
5.7.1--integers-unsized-illegal.sv
blob: 4fbbc3b9ac55c3ad5ba0172e7c7b6a4fa8d2981d [
file
]
/*
: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