Fix the new pr83361.c testcase
[official-gcc.git] / gcc / testsuite / gnat.dg / bip_prim_func.ads
blob37f7ac0fd30f45fdc43fd310f257b590b94c5804
2 package BIP_Prim_Func is
3 pragma Elaborate_Body;
5 type TT is abstract tagged limited record
6 I : Integer;
7 end record;
9 function Prim_Func return TT is abstract;
11 end BIP_Prim_Func;