aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendAda/array_range_ref.adb
blob: f7cba01ed815524c46c0c2d95082d6b85bf31caa (plain)
1
2
3
4
5
6
7
-- RUN: %llvmgcc -c %s -o /dev/null
procedure Array_Range_Ref is
   A : String (1 .. 3);
   B : String := A (A'RANGE)(1 .. 3);
begin
   null;
end;