aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue2143/repro1.vhdl
blob: c51baf62c66c9607b057836bbf52cc81ffb5c8fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
entity repro1 is
end repro1;

architecture struct of repro1 is
	type entry_t is record
		a : bit;
	end record;

	type table_t is array (natural range<>, natural range<>) of entry_t;

	function fun return table_t is
		variable ret : table_t(0 to 7, 0 to 7);
	begin
		return ret;
	end function;

	constant entry : entry_t := fun(0, 0);
begin

end architecture;