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
Add details output for assume processing.
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
array26.adb
blob
659d596fc1ef7935596faae06b36045bc0802b3d
1
-- { dg-do run }
2
-- { dg-options "-O" }
3
4
with
Array26_Pkg
;
use
Array26_Pkg
;
5
6
procedure
Array26
is
7
8
function
Get
return
Outer_type
is
9
Ret
:
Outer_Type
;
10
begin
11
Ret
(
Inner_Type
'Range
) :=
F
;
12
return
Ret
;
13
end
;
14
15
A
:
Outer_Type
:=
Get
;
16
B
:
Inner_Type
:=
A
(
Inner_Type
'Range
);
17
18
begin
19
if
B
/=
"123"
then
20
raise
Program_Error
;
21
end if
;
22
end
;