blob: cb207fc7111d0404b9cfdb174d20be6b5455221e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use std.textio.all;
entity e is end;
architecture a of e is
begin
process
variable q : line(1 to 10) := new string(1 to 10);
begin
assert false severity failure;
wait;
end process;
end;
|