blob: f7cba01ed815524c46c0c2d95082d6b85bf31caa [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001-- RUN: %llvmgcc -c %s -o /dev/null
2procedure Array_Range_Ref is
3 A : String (1 .. 3);
4 B : String := A (A'RANGE)(1 .. 3);
5begin
6 null;
7end;