Modify annotate intrinsic to take 2 additional args: file and line number.
[llvm-complete.git] / test / FrontendAda / array_range_ref.adb
blobf7cba01ed815524c46c0c2d95082d6b85bf31caa
1 -- RUN: %llvmgcc -c %s -o /dev/null
2 procedure Array_Range_Ref is
3 A : String (1 .. 3);
4 B : String := A (A'RANGE)(1 .. 3);
5 begin
6 null;
7 end;