Altera_Forum
Honored Contributor
15 years agoaggregate not accepted
Hello,
I'm trying to use aggregates but get an error during analysis (Quartus 9.1sp2). Hereafter the error on a simplified test example. Could someone tell me what is wrong ? Thanks, P9 error: Error (10514): VHDL aggregate error at test_aggregate.vhd(14): can't determine type of aggregate -- found 6 possible types file: test_aggregate.vhd library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity test_aggregate is port ( signal s1 : out std_logic; signal s2 : out std_logic ); end entity test_aggregate; architecture rtl of test_aggregate is begin (s2, s1) <= ('0', '0'); end rtl;