Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
iface_eq_test.ads
blob: 36f9031ada40deee4bf3242305c637e703efc387 [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
generic
package
Iface_Eq_Test
is
type
Iface
is
limited
interface
;
function
"="
(
L
,
R
:
access
Iface
)
return
Boolean
is
abstract
;
end
;