File: t_assoc_wildcard_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 (78 lines) | stat: -rw-r--r-- 4,432 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
68
69
70
71
72
73
74
75
76
77
78
%Error: t/t_assoc_wildcard_bad.v:23:13: The 1 arguments passed to .num method does not match its requiring 0 arguments
                                      : ... note: In instance 't'
   23 |       v = a.num("badarg");
      |             ^~~
        ... See the manual at https://verilator.org/verilator_doc.html?v=latest for more assistance.
%Error: t/t_assoc_wildcard_bad.v:24:13: The 1 arguments passed to .size method does not match its requiring 0 arguments
                                      : ... note: In instance 't'
   24 |       v = a.size("badarg");
      |             ^~~~
%Error: t/t_assoc_wildcard_bad.v:25:13: The 0 arguments passed to .exists method does not match its requiring 1 arguments
                                      : ... note: In instance 't'
   25 |       v = a.exists();   
      |             ^~~~~~
%Error: t/t_assoc_wildcard_bad.v:26:13: The 2 arguments passed to .exists method does not match its requiring 1 arguments
                                      : ... note: In instance 't'
   26 |       v = a.exists(k, "bad2");
      |             ^~~~~~
%Error: t/t_assoc_wildcard_bad.v:27:9: The 2 arguments passed to .delete method does not match its requiring 0 to 1 arguments
                                     : ... note: In instance 't'
   27 |       a.delete(k, "bad2");
      |         ^~~~~~
%Error: t/t_assoc_wildcard_bad.v:29:9: Array method 'sort' not legal on associative arrays
                                     : ... note: In instance 't'
   29 |       a.sort;   
      |         ^~~~
%Error: t/t_assoc_wildcard_bad.v:30:9: Array method 'rsort' not legal on associative arrays
                                     : ... note: In instance 't'
   30 |       a.rsort;   
      |         ^~~~~
%Error: t/t_assoc_wildcard_bad.v:31:9: Array method 'reverse' not legal on associative arrays
                                     : ... note: In instance 't'
   31 |       a.reverse;   
      |         ^~~~~~~
%Error: t/t_assoc_wildcard_bad.v:32:9: Array method 'shuffle' not legal on associative arrays
                                     : ... note: In instance 't'
   32 |       a.shuffle;   
      |         ^~~~~~~
%Error: t/t_assoc_wildcard_bad.v:34:9: Array method 'first' not legal on wildcard associative arrays
                                     : ... note: In instance 't'
   34 |       a.first;   
      |         ^~~~~
%Error: t/t_assoc_wildcard_bad.v:35:9: Array method 'last' not legal on wildcard associative arrays
                                     : ... note: In instance 't'
   35 |       a.last;   
      |         ^~~~
%Error: t/t_assoc_wildcard_bad.v:36:9: Array method 'next' not legal on wildcard associative arrays
                                     : ... note: In instance 't'
   36 |       a.next;   
      |         ^~~~
%Error: t/t_assoc_wildcard_bad.v:37:9: Array method 'prev' not legal on wildcard associative arrays
                                     : ... note: In instance 't'
   37 |       a.prev;   
      |         ^~~~
%Error: t/t_assoc_wildcard_bad.v:38:9: Array method 'unique_index' not legal on wildcard associative arrays
                                     : ... note: In instance 't'
   38 |       a.unique_index;   
      |         ^~~~~~~~~~~~
%Error: t/t_assoc_wildcard_bad.v:39:9: Array method 'find_index' not legal on wildcard associative arrays
                                     : ... note: In instance 't'
   39 |       a.find_index;   
      |         ^~~~~~~~~~
%Error: t/t_assoc_wildcard_bad.v:40:9: Array method 'find_first_index' not legal on wildcard associative arrays
                                     : ... note: In instance 't'
   40 |       a.find_first_index;   
      |         ^~~~~~~~~~~~~~~~
%Error: t/t_assoc_wildcard_bad.v:41:9: Array method 'find_last_index' not legal on wildcard associative arrays
                                     : ... note: In instance 't'
   41 |       a.find_last_index;   
      |         ^~~~~~~~~~~~~~~
%Error: t/t_assoc_wildcard_bad.v:43:8: Wildcard index must be integral (IEEE 1800-2023 7.8.1)
                                     : ... note: In instance 't'
   43 |       a[x] = "bad";
      |        ^
%Error: t/t_assoc_wildcard_bad.v:45:9: Unknown wildcard associative array method 'bad_not_defined'
                                     : ... note: In instance 't'
   45 |       a.bad_not_defined();
      |         ^~~~~~~~~~~~~~~
%Error: Exiting due to