aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1455/pkg5.vhdl
blob: a196d7a59082b3ff98ddb846dfc1e7c8e936b3d9 (plain)
1
2
3
4
5
6
7
8
package pkg5 is
  type my_arr2D_t is array (0 to 1) of real_vector;

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