mirror of
https://github.com/verilator/verilator.git
synced 2025-01-10 00:27:35 +00:00
62 lines
3.2 KiB
Plaintext
62 lines
3.2 KiB
Plaintext
%Error: t/t_queue_unsup_bad.v:21:11: Unsupported: Replication to form 'string[$]' data type
|
|
: ... In instance t
|
|
21 | q = {"q", "b", "c", "d", "e", "f"};
|
|
| ^
|
|
%Error: t/t_queue_unsup_bad.v:24:9: Unsupported: Queue .delete(index) method, as is O(n) complexity and slow.
|
|
: ... In instance t
|
|
24 | q.delete(1);
|
|
| ^~~~~~
|
|
%Error: t/t_queue_unsup_bad.v:28:9: Unsupported: Queue .insert method, as is O(n) complexity and slow.
|
|
: ... In instance t
|
|
28 | q.insert(2, "ins2");
|
|
| ^~~~~~
|
|
%Error: t/t_queue_unsup_bad.v:34:11: Unsupported: Replication to form 'string[$]' data type
|
|
: ... In instance t
|
|
34 | q = {q, "f1"};
|
|
| ^
|
|
%Error: t/t_queue_unsup_bad.v:35:11: Unsupported: Replication to form 'string[$]' data type
|
|
: ... In instance t
|
|
35 | q = {q, "f2"};
|
|
| ^
|
|
%Error: t/t_queue_unsup_bad.v:36:11: Unsupported: Replication to form 'string[$]' data type
|
|
: ... In instance t
|
|
36 | q = {"b1", q};
|
|
| ^
|
|
%Error: t/t_queue_unsup_bad.v:37:11: Unsupported: Replication to form 'string[$]' data type
|
|
: ... In instance t
|
|
37 | q = {"b2", q};
|
|
| ^
|
|
%Error: t/t_queue_unsup_bad.v:38:11: Unsupported: Replication to form 'string[$]' data type
|
|
: ... In instance t
|
|
38 | q = {q[0], q[2:$]};
|
|
| ^
|
|
%Error: t/t_queue_unsup_bad.v:38:22: Unsupported/illegal unbounded ('$') in this context.
|
|
: ... In instance t
|
|
38 | q = {q[0], q[2:$]};
|
|
| ^
|
|
%Error: t/t_queue_unsup_bad.v:38:22: Expecting expression to be constant, but can't convert a UNBOUNDED to constant.
|
|
: ... In instance t
|
|
38 | q = {q[0], q[2:$]};
|
|
| ^
|
|
%Error: t/t_queue_unsup_bad.v:38:22: First value of [a:b] isn't a constant, maybe you want +: or -:
|
|
: ... In instance t
|
|
38 | q = {q[0], q[2:$]};
|
|
| ^
|
|
%Error: t/t_queue_unsup_bad.v:38:19: Illegal range select; type already selected, or bad dimension: data type is 'string[$]'
|
|
: ... In instance t
|
|
38 | q = {q[0], q[2:$]};
|
|
| ^
|
|
%Error: t/t_queue_unsup_bad.v:42:25: Unsupported: Replication to form 'string[$]' data type
|
|
: ... In instance t
|
|
42 | string ai[$] = { "Foo", "Bar" };
|
|
| ^
|
|
%Error: t/t_queue_unsup_bad.v:47:14: Unsupported: Assignment pattern applies against non struct/union data type: 'string[$]'
|
|
: ... In instance t
|
|
47 | q = '{ "BB", "CC" };
|
|
| ^~
|
|
%Error: t/t_queue_unsup_bad.v:50:14: Unsupported: Replication to form 'string[$]' data type
|
|
: ... In instance t
|
|
50 | q = { "BB", "CC" };
|
|
| ^
|
|
%Error: Exiting due to
|