Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
a50fc0da15e88d7b685f92dc843d3d71b716c8a4
/
.
/
src
/
Testcases
/
Google
/
chapter-11
/
11.4.2--unary_op_inc.sv
blob: 88df2aa8a5d6279cb5f1f4caa7c3a91c817c95de [
file
] [
log
] [
blame
]
/*
:name: unary_op_inc
:description: ++ operator test
:should_fail: 0
:tags: 11.4.2
*/
module
top
();
int
a
=
12
;
initial
begin
a
++;
end
endmodule