repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR ipa/83051
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
incomplete6.adb
blob
b2bf64297e185376a6d89e9420c8e71373f4ddcd
1
-- { dg-do compile }
2
3
package body
Incomplete6
is
4
5
function
"="
(
Left
,
Right
:
Vint
)
return
Boolean
is
6
begin
7
return
Left
.
Value
=
Right
.
Value
;
8
end
;
9
10
function
"="
(
Left
,
Right
:
Vfloat
)
return
Boolean
is
11
begin
12
return
Left
.
Value
=
Right
.
Value
;
13
end
;
14
15
end
;