blob: 1851a7c8b4b5bc46f476ed683a6b411ee65b268a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
entity e3 is end;
architecture a of e3 is
begin
------------------------------------------------------------------------
-- There is no infinite loop when a report statement with severity
-- failure is unconditionally executed
------------------------------------------------------------------------
process
begin
report "" severity failure;
end process;
end;
|