summaryrefslogtreecommitdiff
path: root/test/FrontendAda/array_constructor.adb
blob: de64b45a1e3e630a92f932e934dfab0393144547 (plain)
1
2
3
4
5
6
-- RUN: %llvmgcc -c %s
procedure Array_Constructor is
   A : array (Integer range <>) of Boolean := (True, False);
begin
   null;
end;