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