2020-03-15 02:02:42 +00:00
|
|
|
%Error: t/t_var_notfound_bad.v:17:7: Can't find definition of variable: 'nf'
|
2019-07-15 01:42:03 +00:00
|
|
|
nf = 0;
|
|
|
|
^~
|
2020-03-15 02:02:42 +00:00
|
|
|
%Error: t/t_var_notfound_bad.v:18:11: Can't find definition of 'subsubz' in dotted scope/variable: 'sub.subsubz'
|
2019-07-15 01:42:03 +00:00
|
|
|
sub.subsubz.inss = 0;
|
|
|
|
^~~~~~~
|
2019-05-31 00:30:59 +00:00
|
|
|
... Known scopes under 'sub': subsub
|
2020-03-15 02:02:42 +00:00
|
|
|
%Error: t/t_var_notfound_bad.v:19:11: Can't find definition of task/function: 'nofunc'
|
|
|
|
: ... Suggested alternative: 'notfunc'
|
2019-07-15 01:42:03 +00:00
|
|
|
i = nofunc();
|
|
|
|
^~~~~~
|
2020-03-15 02:02:42 +00:00
|
|
|
%Error: t/t_var_notfound_bad.v:20:15: Can't find definition of 'nofuncs' in dotted task/function: 'sub.nofuncs'
|
|
|
|
: ... Suggested alternative: 'notfuncs'
|
2019-07-15 01:42:03 +00:00
|
|
|
i = sub.nofuncs();
|
|
|
|
^~~~~~~
|
2020-02-26 03:21:16 +00:00
|
|
|
... Known scopes under 'nofuncs': sub
|
2020-03-15 02:02:42 +00:00
|
|
|
%Error: t/t_var_notfound_bad.v:21:7: Can't find definition of task/function: 'notask'
|
|
|
|
: ... Suggested alternative: 'nottask'
|
2019-07-15 01:42:03 +00:00
|
|
|
notask();
|
|
|
|
^~~~~~
|
2020-03-15 02:02:42 +00:00
|
|
|
%Error: t/t_var_notfound_bad.v:22:7: Found definition of 'a_var' as a VAR but expected a task/function
|
2019-07-15 01:42:03 +00:00
|
|
|
a_var();
|
|
|
|
^~~~~
|
2018-11-03 18:59:04 +00:00
|
|
|
%Error: Exiting due to
|