blob: 572ad308757798c5a1a26787325f2650394eff4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
entity repro is
generic (a : natural := 5);
end;
architecture behav of repro is
constant c : natural := 10;
begin
assert false
report natural'image(a) & ", c = " & integer'image(c)
severity note;
end;
|