6 architecture struct of repro2 is
11 type table_t is array (natural range<>, natural range<>) of entry_t;
13 function fun return table_t is
14 variable ret : table_t(0 to 7, 0 to 7);
19 constant table : table_t := fun;
21 o <= table(0,0).a when clk = '1' else '0';