2020-06-09 23:20:16 +00:00
|
|
|
%Error-UNSUPPORTED: t/t_for_comma_bad.v:27:23: Unsupported: for loop initialization after the first comma
|
2020-04-04 00:07:46 +00:00
|
|
|
27 | for (integer a=0, integer b=0; a<1; ) ;
|
|
|
|
| ^
|
2020-06-09 23:20:16 +00:00
|
|
|
%Error-UNSUPPORTED: t/t_for_comma_bad.v:28:23: Unsupported: for loop initialization after the first comma
|
2020-04-04 00:07:46 +00:00
|
|
|
28 | for (integer a=0, integer b=0; a<1; a=a+1) ;
|
|
|
|
| ^
|
2020-06-09 23:20:16 +00:00
|
|
|
%Error-UNSUPPORTED: t/t_for_comma_bad.v:29:23: Unsupported: for loop initialization after the first comma
|
2020-04-04 00:07:46 +00:00
|
|
|
29 | for (integer a=0, integer b=0; a<1; a=a+1, b=b+1) ;
|
|
|
|
| ^
|
2019-01-23 00:25:00 +00:00
|
|
|
%Error: Exiting due to
|