c++: prvalue of array type [PR111286]
[official-gcc.git] / gcc / testsuite / gnat.dg / opt98.ads
blobfcc705776d4526c945895160b839ecc8a37f5014
1 with Ada.Unchecked_Conversion;
2 with System;
4 package Opt98 is
6 type Rec is record
7 I : Integer;
8 end record;
10 function To_Address is new Ada.Unchecked_Conversion (Rec, System.Address);
12 function To_Rec is new Ada.Unchecked_Conversion (System.Address, Rec);
14 A : System.Address with Atomic;
16 function Func return Rec;
18 end Opt98;