aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1376/pkg.vhdl
blob: f7aa1f2014a8bb84a3dac7eff4ca4dccf1c0ab80 (plain)
1
2
3
4
5
6
7
8
9
10
11
package int_arr is
  type int_array_t is array(natural range <>) of integer;
end package;

library ieee;
use ieee.std_logic_1164.all;

package slv_arr is
  type slv_array_t is array(natural range <>) of std_logic_vector;
  type slv_arr_array_t is array(natural range <>) of slv_array_t;
end package ;