aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1287/myentity2.vhdl
blob: fe3cf56c5b2000667732a8b31f03ca5fae65a40f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
entity myentity2 is
end myentity2;

architecture arch of myentity2 is
  type myrecord is record
    a : bit_vector;
  end record;
  subtype myboundedrecord is myrecord(a(1 downto 0));
  type myarray is array (natural range <>) of myboundedrecord;

  signal s : myarray (1 downto 0);
begin
end arch;