Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
713605cadef845b9f44d6469208fb6e902ace095
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-9
/
9.3.5--statement_labels_seq.sv
blob: 9c89c94f10901dc0688bc9c4a5ddd2cd73b12969 [
file
] [
log
] [
blame
]
/*
:name: statement_labels_seq
:description: sequential block labels check
:should_fail: 0
:tags: 9.3.5
*/
module
block_tb
();
reg a
=
0
;
reg b
=
0
;
reg c
=
0
;
initial
name
:
begin
a
=
1
;
b
=
a
;
c
=
b
;
end
:
name
endmodule