Files
clang-p2996/llvm/test/FrontendAda/array_constructor.adb
Chris Lattner 412c70ed8a move ada tests
llvm-svn: 35629
2007-04-03 21:46:22 +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;