Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
36edd2bd845c2e56e36b75d2696ae7a98914e2a8
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-12
/
12.7.3--foreach.sv
blob: 95d5aa2c7b9d4e6bded99571b537082576471e89 [
file
] [
log
] [
blame
]
/*
:name: foreach_loop
:description: A module testing foreach loop
:should_fail: 0
:tags: 12.7.3
*/
module
foreach_tb
();
string
test
[
4
]
=
'{"111", "222", "333", "444"};
initial begin
foreach(test[i])
$display(i, test[i]);
end
endmodule