aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1751/ent.vhdl
blob: bc807b635cdbc31b8b37b0a3dfc827b3396c0c86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;

entity ent is
end entity ent;

architecture beh of ent is
  signal sig_1 : std_logic;
  alias a_sig_1 is sig_1;
begin
  process
  begin
    a_sig_1 <= force '1';
    a_sig_1 <= release;
    wait;
  end process;
end architecture beh;