The following construction is allowed with the "new" VHDL-2008 syntax, but the highlighting on the last bracket does not agree.
architecture rtl of test is
signal alpha : std_logic_vector(1 downto 0);
signal beta : std_logic_vector(1 downto 0);
signal gamma : std_logic_vector(3 downto 0);
begin
(alpha, beta) <= gamma;
end architecture;

The following construction is allowed with the "new" VHDL-2008 syntax, but the highlighting on the last bracket does not agree.