aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/renaming1.adb
blob: d033c9abce2b78c57fbad189e07d7250a7e25b72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- { dg-do compile}
-- { dg-options "-gnatwa" }

with Text_IO;
use Text_IO;
package body renaming1 is
   procedure Fo (A : Text_IO.File_Access) is
   begin
      if A = Text_IO.Standard_Output then
         null;
      end if;
   end Fo;
end;