hanchenye-llvm-project/llvm/test/FrontendAda/array_constructor.adb

7 lines
135 B
Ada

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