aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1961/repro.vhdl
blob: 4c2f7c2909b445924b76077ac5642b8b4c563e2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
entity repro is
	port (
		clk : in bit
	);
end;

architecture struct of repro is

	type a_t is record
		value : bit_vector;
	end record;

	type a_array_t is array(natural range<>) of a_t;

	type b_t is record
		a : a_array_t;
	end record;

	type b_array_t is array(natural range<>) of b_t;

	function fun return natural is
		variable b : b_array_t(0 to 1)(a(0 to 31)(value(31 downto 0)));
	begin
		return 0;
	end function;

	constant dummy : natural := fun;
begin
	
end architecture;