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