blob: 9d0027fc2bec3d7ea6d3be878db9a8ee3be1d79a (
plain)
1
2
3
4
5
6
7
8
9
10
|
entity ent is end entity;
architecture arch of ent is
attribute att :integer_vector;
constant const :integer := 1;
attribute att of const:constant is (2, 3);
begin
assert false
report "const'att(0) is " & integer'image(const'att(0))
severity note;
end architecture;
|