Ada AccessAttrTyped and AccessAttrTypedby Kinds

Use “ada accessattrtype” to match all these reference kinds.

Kind Name
Entity Performing Reference
Entity Being Referenced
Ada AccessAttrTyped
function_y
a_f
Ada AccessAttrTypedby
a_f
function_y

These kinds indicate an access attribute was used on a subprogram to generate the identified access type.

package p is 
   type a_f is access function(x : in integer) return integer; 
   function function_y(x : integer) return integer; 
end; 
 
with p; use p; 
procedure main is 
  local : a_f; 
begin 
  local := function_y'access; 
end; 

Scientific Toolworks, Inc.
http://www.scitools.com