Corrected date in changelog
[official-gcc.git] / gcc / testsuite / gnat.dg / vect8.adb
blob7b1cecf083b0fc4051ce2e8b9bec376ac3d9885c
1 -- { dg-do compile }
2 -- { dg-options "-w" }
4 package body Vect8 is
6 function Foo (V : Vec) return Vec is
7 Ret : Vec;
8 begin
9 Ret (1) := V (1) + V (2);
10 Ret (2) := V (1) - V (2);
11 return Ret;
12 end;
14 end Vect8;