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