Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gnat.dg / addr12_b.ads
blob8b5840001ae6912822799e2f9d61376afc061490
1 package Addr12_B is
3 type Entry_Type is record
4 Auto_Init : Boolean;
5 end record;
7 type Entry_Range is range 1 .. 20;
8 type Entries_Type is array (Entry_Range) of Entry_Type;
10 Null_Entry : constant Entry_Type := Entry_Type'(Auto_Init => False);
12 type Shared_Context_Type is limited private;
14 function Initial_State return Shared_Context_Type
15 with Volatile_Function;
17 private
19 type Shared_Context_Type is limited record
20 Data : Entries_Type;
21 end record
22 with Volatile;
24 end Addr12_B;