* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gnat.dg / limited_with3_pkg1.adb
blob6a7d92b41e00e719dbfdb2ca965e3ec54df19b69
1 with Ada.Strings.Fixed.Hash;
3 package body Limited_With3_Pkg1 is
5 function Equal ( Left, Right : Element_Access) return Boolean is
6 begin
7 return True;
8 end;
10 function Equivalent_Keys (Left, Right : Key_Type) return Boolean is
11 begin
12 return True;
13 end;
15 function Hash (Key : Key_Type) return Ada.Containers.Hash_Type is
16 begin
17 return Ada.Strings.Fixed.Hash (Key.all);
18 end Hash;
20 end Limited_With3_Pkg1;