File: t_queue_method_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 (38 lines) | stat: -rw-r--r-- 2,148 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
%Error: t/t_queue_method_bad.v:15:9: The 1 arguments passed to .reverse method does not match its requiring 0 arguments
                                   : ... note: In instance 't'
   15 |       q.reverse(1);   
      |         ^~~~~~~
        ... See the manual at https://verilator.org/verilator_doc.html?v=latest for more assistance.
%Error: t/t_queue_method_bad.v:16:9: The 1 arguments passed to .shuffle method does not match its requiring 0 arguments
                                   : ... note: In instance 't'
   16 |       q.shuffle(1);   
      |         ^~~~~~~
%Error: t/t_queue_method_bad.v:17:14: 'with' statement is required for .find method
                                    : ... note: In instance 't'
   17 |       qv = q.find;   
      |              ^~~~
%Error: t/t_queue_method_bad.v:18:14: 'with' statement is required for .find_first method
                                    : ... note: In instance 't'
   18 |       qv = q.find_first;   
      |              ^~~~~~~~~~
%Error: t/t_queue_method_bad.v:19:14: 'with' statement is required for .find_last method
                                    : ... note: In instance 't'
   19 |       qv = q.find_last;   
      |              ^~~~~~~~~
%Error: t/t_queue_method_bad.v:20:14: 'with' statement is required for .find_index method
                                    : ... note: In instance 't'
   20 |       qi = q.find_index;   
      |              ^~~~~~~~~~
%Error: t/t_queue_method_bad.v:21:14: 'with' statement is required for .find_first_index method
                                    : ... note: In instance 't'
   21 |       qi = q.find_first_index;   
      |              ^~~~~~~~~~~~~~~~
%Error: t/t_queue_method_bad.v:22:14: 'with' statement is required for .find_last_index method
                                    : ... note: In instance 't'
   22 |       qi = q.find_last_index;   
      |              ^~~~~~~~~~~~~~~
%Error: t/t_queue_method_bad.v:24:19: 'with' not legal on this method
                                    : ... note: In instance 't'
   24 |       qi = q.size with (1);   
      |                   ^~~~
%Error: Exiting due to