Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
1c596881d1a7fc4baa7972b1f16b2e3d461aa200
/
.
/
src
/
Testcases
/
Google
/
chapter-5
/
5.7.1--integers-unsized-illegal.sv
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