summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/specs/iface_eq_test.ads
blob: 36f9031ada40deee4bf3242305c637e703efc387 (plain)
1
2
3
4
5
6
--  { dg-do compile }
generic         
package Iface_Eq_Test is
   type Iface is limited interface;
   function "=" (L, R : access Iface) return Boolean is abstract;
end;