Forum Discussion
Altera_Forum
Honored Contributor
12 years agoit is because "size of a is" is a string, and a'length is an integer type. You cannot concatenate them directly. You have to convert the integer to a string.
try this:
aviso: assert false
report "size of a is " & integer'image(a'length)
severity note;