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
tree-optimization/113385 - wrong loop father with early exit vectorization
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
limited1_outer.ads
blob
d787ca8febe854bb75bf3244d0a7f177c1268998
1
with
Limited1_Inner
;
use
Limited1_Inner
;
2
3
package
Limited1_Outer
is
4
type
Outer_Type
(
What
:
Boolean
)
is record
5
Inner
:
Inner_Type
(
What
);
6
end record
;
7
8
function
Make_Outer
return
Outer_Type
;
9
end
Limited1_Outer
;