Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gnat.dg / inline17_pkg3.ads
blob6f0c5a8e9df53f916bd5f78f0fc04035ee6b572c
2 package Inline17_Pkg3 is
4 type SQL_Field is tagged null record;
6 function "+" (Field : SQL_Field'Class) return Integer;
8 type Ref is record
9 Data : Integer;
10 end record;
12 function Unchecked_Get (Self : Ref) return Integer with Inline_Always;
14 function Get (Self : Ref) return Integer is (Unchecked_Get (Self));
16 end Inline17_Pkg3;