File: t_assoc_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 (67 lines) | stat: -rw-r--r-- 3,942 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
%Error: t/t_assoc_method_bad.v:14:13: The 1 arguments passed to .num method does not match its requiring 0 arguments
                                    : ... note: In instance 't'
   14 |       v = a.num("badarg");
      |             ^~~
        ... See the manual at https://verilator.org/verilator_doc.html?v=latest for more assistance.
%Error: t/t_assoc_method_bad.v:15:13: The 1 arguments passed to .size method does not match its requiring 0 arguments
                                    : ... note: In instance 't'
   15 |       v = a.size("badarg");
      |             ^~~~
%Error: t/t_assoc_method_bad.v:16:13: The 0 arguments passed to .exists method does not match its requiring 1 arguments
                                    : ... note: In instance 't'
   16 |       v = a.exists();   
      |             ^~~~~~
%Error: t/t_assoc_method_bad.v:17:13: The 2 arguments passed to .exists method does not match its requiring 1 arguments
                                    : ... note: In instance 't'
   17 |       v = a.exists(k, "bad2");
      |             ^~~~~~
%Error: t/t_assoc_method_bad.v:18:13: The 0 arguments passed to .first method does not match its requiring 1 arguments
                                    : ... note: In instance 't'
   18 |       v = a.first();   
      |             ^~~~~
%Error-UNSUPPORTED: t/t_assoc_method_bad.v:18:13: Unsupported: Non-variable on LHS of built-in method 'first'
                                                : ... note: In instance 't'
   18 |       v = a.first();   
      |             ^~~~~
                    ... For error description see https://verilator.org/warn/UNSUPPORTED?v=latest
%Error: t/t_assoc_method_bad.v:19:13: The 2 arguments passed to .next method does not match its requiring 1 arguments
                                    : ... note: In instance 't'
   19 |       v = a.next(k, "bad2");   
      |             ^~~~
%Error: t/t_assoc_method_bad.v:20:13: The 0 arguments passed to .last method does not match its requiring 1 arguments
                                    : ... note: In instance 't'
   20 |       v = a.last();   
      |             ^~~~
%Error-UNSUPPORTED: t/t_assoc_method_bad.v:20:13: Unsupported: Non-variable on LHS of built-in method 'last'
                                                : ... note: In instance 't'
   20 |       v = a.last();   
      |             ^~~~
%Error: t/t_assoc_method_bad.v:21:13: The 2 arguments passed to .prev method does not match its requiring 1 arguments
                                    : ... note: In instance 't'
   21 |       v = a.prev(k, "bad2");   
      |             ^~~~
%Error: t/t_assoc_method_bad.v:22:9: The 2 arguments passed to .delete method does not match its requiring 0 to 1 arguments
                                   : ... note: In instance 't'
   22 |       a.delete(k, "bad2");
      |         ^~~~~~
%Error: t/t_assoc_method_bad.v:24:9: Array method 'sort' not legal on associative arrays
                                   : ... note: In instance 't'
   24 |       a.sort;   
      |         ^~~~
%Error: t/t_assoc_method_bad.v:25:9: Array method 'rsort' not legal on associative arrays
                                   : ... note: In instance 't'
   25 |       a.rsort;   
      |         ^~~~~
%Error: t/t_assoc_method_bad.v:26:9: Array method 'reverse' not legal on associative arrays
                                   : ... note: In instance 't'
   26 |       a.reverse;   
      |         ^~~~~~~
%Error: t/t_assoc_method_bad.v:27:9: Array method 'shuffle' not legal on associative arrays
                                   : ... note: In instance 't'
   27 |       a.shuffle;   
      |         ^~~~~~~
%Error: t/t_assoc_method_bad.v:29:9: Unknown built-in associative array method 'bad_not_defined'
                                   : ... note: In instance 't'
   29 |       a.bad_not_defined();
      |         ^~~~~~~~~~~~~~~
%Error: Exiting due to