A8.6.92 MCR (Encoding A1): if coproc == '101x' then SEE "Advanced SIMD and VFP"
[llvm/stm8.git] / test / FrontendAda / array_range_ref.adb
blob037c5aa8b6f012d1401fcedccc34895da0e55b64
1 -- RUN: %llvmgcc -S %s
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;