blob: 981e6b3529e1052abdb4a6901b14994027361a5a [file] [log] [blame]
/*
:name: statement_labels_par
:description: parallel block labels check
:should_fail: 0
:tags: 9.3.5
*/
module block_tb ();
reg a = 0;
reg b = 0;
reg c = 0;
initial
name: fork
a = 1;
b = 0;
c = 1;
join: name
endmodule