mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
7 lines
148 B
Ada
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;
|