Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / renaming1.adb
blobc85e50abd40cbb82232cf234f2b4e34348f0cb16
1 -- { dg-do compile}
2 -- { dg-options "-gnatwa" }
4 with Ada.Text_IO;
5 use Ada.Text_IO;
6 package body renaming1 is
7 procedure Fo (A : Ada.Text_IO.File_Access) is
8 begin
9 if A = Ada.Text_IO.Standard_Output then
10 null;
11 end if;
12 end Fo;
13 end;