llvm-6502/test/AdaFrontend/array_constructor.adb

7 lines
148 B
Ada
Raw Normal View History

-- RUN: %llvmgcc -c %s -o /dev/null
procedure Array_Constructor is
A : array (Integer range <>) of Boolean := (True, False);
begin
null;
end;