c++: prvalue of array type [PR111286]
[official-gcc.git] / gcc / testsuite / gnat.dg / opt20_pkg.ads
blob2b9b3e8bdf0ccc86ee0f99e496b65c8830eda416
1 package Opt20_Pkg is
3 procedure Write_Str (S : String);
5 type Fail_Proc is access procedure (S : String);
7 procedure My_Fail (S : String);
9 Fail : Fail_Proc := My_Fail'Access;
11 function Get_Name_String (Id : Integer) return String;
13 end Opt20_Pkg;