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
Preserving locations for variable-uses and constants (PR c++/43486)
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
deferred_const4.ads
blob
18a4171e8b2da149285bbe286f1340dd86e4be3c
1
with
Deferred_Const4_Pkg
;
2
3
package
Deferred_Const4
is
4
5
type
R1
is tagged record
6
I1
:
Integer
;
7
end record
;
8
9
type
R2
is new
R1
with record
10
I2
:
Integer
;
11
end record
;
12
13
package
My_Q
is new
Deferred_Const4_Pkg
(
R2
);
14
15
function
F
return
My_Q
.
T
;
16
17
end
Deferred_Const4
;