analyzer: Fix PR analyzer/101980
[official-gcc.git] / gcc / testsuite / gnat.dg / prot7.ads
blob5e06e26db35162095ba2afe164bd89edd9cb5de6
1 package Prot7 is
2 type Instance_Pointer is access Integer;
4 protected Default_Slice
5 with Lock_Free
6 is
7 function Get return Instance_Pointer;
9 procedure Set (
10 Discard : in out Boolean;
11 Slice : in Instance_Pointer
13 private
14 Default : Instance_Pointer;
15 end Default_Slice;
16 end Prot7;