blob: 6893d4405d1d7bf32253436a205472cb942fbc60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
entity test1 is
begin
end entity;
architecture arch of test1 is
begin
process(all)
begin
assert false report "compilation crashes here";
assert false;
end process;
end architecture;
|