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

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