mirror of
https://github.com/verilator/verilator.git
synced 2025-01-15 19:14:04 +00:00
71 lines
4.2 KiB
Plaintext
71 lines
4.2 KiB
Plaintext
%Error-UNSUPPORTED: t/t_queue_method.v:28:14: Unsupported: with statements
|
|
28 | q.sort with (item == 2);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:30:17: Unsupported: with statements
|
|
30 | q.sort(x) with (x == 3);
|
|
| ^~~~
|
|
%Error: t/t_queue_method.v:30:14: Can't find definition of variable: 'x'
|
|
30 | q.sort(x) with (x == 3);
|
|
| ^
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:32:18: Unsupported: with statements
|
|
32 | qe.sort(x) with (x == 3);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:37:15: Unsupported: with statements
|
|
37 | q.rsort with (item == 2);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:39:19: Unsupported: with statements
|
|
39 | qe.rsort(x) with (x == 3);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:59:19: Unsupported: with statements
|
|
59 | qv = q.find with (item == 2);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:61:25: Unsupported: with statements
|
|
61 | qv = q.find_index with (item == 2); qv.sort;
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:63:25: Unsupported: with statements
|
|
63 | qv = q.find_first with (item == 2);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:65:31: Unsupported: with statements
|
|
65 | qv = q.find_first_index with (item == 2);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:67:24: Unsupported: with statements
|
|
67 | qv = q.find_last with (item == 2);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:69:30: Unsupported: with statements
|
|
69 | qv = q.find_last_index with (item == 2);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:72:19: Unsupported: with statements
|
|
72 | qv = q.find with (item == 20);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:74:25: Unsupported: with statements
|
|
74 | qv = q.find_index with (item == 20); qv.sort;
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:76:25: Unsupported: with statements
|
|
76 | qv = q.find_first with (item == 20);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:78:31: Unsupported: with statements
|
|
78 | qv = q.find_first_index with (item == 20);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:80:24: Unsupported: with statements
|
|
80 | qv = q.find_last with (item == 20);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:82:30: Unsupported: with statements
|
|
82 | qv = q.find_last_index with (item == 20);
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:98:17: Unsupported: with statements
|
|
98 | i = q.sum with (item + 1); do if ((i) !== (32'h11)) begin $write("%%Error: %s:%0d: got='h%x exp='h%x\n", "t/t_queue_method.v",98, (i), (32'h11)); $stop; end while(0);;
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:100:21: Unsupported: with statements
|
|
100 | i = q.product with (item + 1); do if ((i) !== (32'h168)) begin $write("%%Error: %s:%0d: got='h%x exp='h%x\n", "t/t_queue_method.v",100, (i), (32'h168)); $stop; end while(0);;
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:107:17: Unsupported: with statements
|
|
107 | i = q.and with (item + 1); do if ((i) !== (32'b1001)) begin $write("%%Error: %s:%0d: got='h%x exp='h%x\n", "t/t_queue_method.v",107, (i), (32'b1001)); $stop; end while(0);;
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:109:16: Unsupported: with statements
|
|
109 | i = q.or with (item + 1); do if ((i) !== (32'b1111)) begin $write("%%Error: %s:%0d: got='h%x exp='h%x\n", "t/t_queue_method.v",109, (i), (32'b1111)); $stop; end while(0);;
|
|
| ^~~~
|
|
%Error-UNSUPPORTED: t/t_queue_method.v:111:17: Unsupported: with statements
|
|
111 | i = q.xor with (item + 1); do if ((i) !== (32'b0110)) begin $write("%%Error: %s:%0d: got='h%x exp='h%x\n", "t/t_queue_method.v",111, (i), (32'b0110)); $stop; end while(0);;
|
|
| ^~~~
|
|
%Error: Exiting due to
|