remove unused files
[platform/upstream/gcc48.git] / gcc / testsuite / gnat.dg / opt17.adb
1 -- { dg-do compile }
2 -- { dg-options "-O" }
3
4 package body Opt17 is
5
6   function Func return S is
7     V : String (1 .. 6);
8   begin
9     V (1 .. 3) := "ABC";
10     return V (1 .. 5);
11   end;
12
13 end Opt17;