mirror of
https://github.com/verilator/verilator.git
synced 2025-01-10 16:47:48 +00:00
12 lines
714 B
Plaintext
12 lines
714 B
Plaintext
%Error-UNSUPPORTED: t/t_for_comma_bad.v:27:23: Unsupported: for loop initialization after the first comma
|
|
27 | for (integer a=0, integer b=0; a<1; ) ;
|
|
| ^
|
|
... For error description see https://verilator.org/warn/UNSUPPORTED?v=latest
|
|
%Error-UNSUPPORTED: t/t_for_comma_bad.v:28:23: Unsupported: for loop initialization after the first comma
|
|
28 | for (integer a=0, integer b=0; a<1; a=a+1) ;
|
|
| ^
|
|
%Error-UNSUPPORTED: t/t_for_comma_bad.v:29:23: Unsupported: for loop initialization after the first comma
|
|
29 | for (integer a=0, integer b=0; a<1; a=a+1, b=b+1) ;
|
|
| ^
|
|
%Error: Exiting due to
|