llvm-6502/test/AdaFrontend/array_constructor.adb
2007-03-13 15:12:35 +00:00

7 lines
148 B
Ada

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