2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / iface_eq_test.ads
blob36f9031ada40deee4bf3242305c637e703efc387
1 -- { dg-do compile }
2 generic
3 package Iface_Eq_Test is
4 type Iface is limited interface;
5 function "=" (L, R : access Iface) return Boolean is abstract;
6 end;