verilator/test_regress/t/t_increment_bad.out
2021-04-24 10:33:49 -04:00

24 lines
1.2 KiB
Plaintext

%Error-UNSUPPORTED: t/t_increment_bad.v:15:31: Unsupported: Incrementation in this context.
15 | if (0 && test_string[pos++] != "e");
| ^~
... For error description see https://verilator.org/warn/UNSUPPORTED?v=latest
%Error-UNSUPPORTED: t/t_increment_bad.v:16:19: Unsupported: Incrementation in this context.
16 | if (1 || pos-- != 1);
| ^~
%Error-UNSUPPORTED: t/t_increment_bad.v:18:17: Unsupported: Incrementation in this context.
18 | if (a <-> --b);
| ^~
%Error-UNSUPPORTED: t/t_increment_bad.v:19:16: Unsupported: Incrementation in this context.
19 | if (0 -> ++b);
| ^~
%Error-UNSUPPORTED: t/t_increment_bad.v:21:24: Unsupported: Incrementation in this context.
21 | pos = (a > 0) ? a++ : --b;
| ^~
%Error-UNSUPPORTED: t/t_increment_bad.v:21:29: Unsupported: Incrementation in this context.
21 | pos = (a > 0) ? a++ : --b;
| ^~
%Error-UNSUPPORTED: t/t_increment_bad.v:23:24: Unsupported: Incrementation in this context.
23 | pos = array[0][0]++;
| ^~
%Error: Exiting due to