aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1009/array_test.vhdl
blob: 5714765550d8c5d0cd906ecc837f4ba25fcb8c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
entity array_test is
  port (
    o : out integer
  );
end array_test;

architecture rtl of array_test is
  type t_array is array (natural range <>) of integer;
  constant rec_constant : t_array := (1 => 27.777 us / 83.333 ns);
  constant rec_constant2 : t_array := rec_constant;
begin
  o <= rec_constant2 (1);
end rtl;