File: t_let_arg_bad.out

package info (click to toggle)
verilator 5.038-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 162,552 kB
  • sloc: cpp: 139,204; python: 20,931; ansic: 10,222; yacc: 6,000; lex: 1,925; makefile: 1,260; sh: 494; perl: 282; fortran: 22
file content (20 lines) | stat: -rw-r--r-- 1,178 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
%Error: t/t_let_arg_bad.v:13:18: Too many arguments in function call to LET 'NO_ARG'
   13 |       if (NO_ARG(10) != 10) $stop;   
      |                  ^~
        ... See the manual at https://verilator.org/verilator_doc.html?v=latest for more assistance.
%Error: t/t_let_arg_bad.v:14:11: Missing argument on non-defaulted argument 'a' in function call to LET 'ONE_ARG'
   14 |       if (ONE_ARG != 10) $stop;   
      |           ^~~~~~~
%Error: t/t_let_arg_bad.v:15:11: Missing argument on non-defaulted argument 'a' in function call to LET 'ONE_ARG'
   15 |       if (ONE_ARG() != 10) $stop;   
      |           ^~~~~~~
%Error: t/t_let_arg_bad.v:16:23: Too many arguments in function call to LET 'ONE_ARG'
   16 |       if (ONE_ARG(10, 20) != 10) $stop;   
      |                       ^~
%Error: t/t_let_arg_bad.v:17:20: No such argument 'b' in function call to LET 'ONE_ARG'
   17 |       if (ONE_ARG(.b(1)) != 10) $stop;   
      |                    ^
%Error: t/t_let_arg_bad.v:17:11: Missing argument on non-defaulted argument 'a' in function call to LET 'ONE_ARG'
   17 |       if (ONE_ARG(.b(1)) != 10) $stop;   
      |           ^~~~~~~
%Error: Exiting due to