|
发表于 2020-8-31 21:53:43
|
显示全部楼层
In SystemVerilog syntax, if a datatype begins with an identifier,
the identifier must refer to a type. Make sure that the typedef of the desired type
is visible in that scope or that there are not multiple wild card import clauses
importing typedefs of the same identifier name. The latter would make the use of
a simple type name ambiguous; in that case, in order to disambiguate which type is
desired you must provide a full type name of the form package_name::type_name. |
|