verilator/test_regress/t/t_lint_wait_bad.out
2022-11-11 17:18:59 -05:00

16 lines
820 B
Plaintext

%Warning-WAITCONST: t/t_timing_wait.v:48:12: Wait statement condition is constant
48 | wait(1);
| ^
... For warning description see https://verilator.org/warn/WAITCONST?v=latest
... Use "/* verilator lint_off WAITCONST */" and lint_on around source to disable this message.
%Warning-WAITCONST: t/t_timing_wait.v:50:14: Wait statement condition is constant
50 | wait(0 < 1) $write("*-* All Finished *-*\n");
| ^
%Warning-WAITCONST: t/t_timing_wait.v:54:17: Wait statement condition is constant
54 | initial wait(0) $stop;
| ^
%Warning-WAITCONST: t/t_timing_wait.v:55:19: Wait statement condition is constant
55 | initial wait(1 == 0) $stop;
| ^~
%Error: Exiting due to