aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1455/pkg2.vhdl
blob: 14ff15d031f7960c95b7de0b5ada518009817a5a (plain)
1
2
3
4
5
6
7
8
9
package pkg2 is
  type my_arr2D_t is array (natural range <>) of real_vector;

  constant my_arr2D: my_arr2D_t(0 to 1) := (
    (0.0, 0.1),
    (1.0, 1.1)
  );
end;