blob: 093233a31ff939494c6f1e52cbb3d760e4eef0b1 [file] [log] [blame]
Chris Lattnere10988d2007-04-03 21:46:22 +00001-- RUN: %llvmgcc -c %s -o /dev/null
2procedure Array_Ref is
3 type A is array (Natural range <>, Natural range <>) of Boolean;
4 type A_Access is access A;
5 function Get (X : A_Access) return Boolean is
6 begin
7 return X (0, 0);
8 end;
9begin
10 null;
11end;