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
c++: prvalue of array type [PR111286]
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
fixedpnt7.adb
blob
635b9847db7f0d32da3d9e81ad3d243408d8c17a
1
-- { dg-do run }
2
3
procedure
Fixedpnt7
is
4
type
F1
is delta
1.0
range
-
2.0
**
63
..
0.0
5
with
Small
=>
1.0
;
6
type
F2
is delta
4.0
range
0.0
..
2.0
**
64
7
with
Small
=>
4.0
;
8
type
D
is delta
1.0
digits
18
;
9
10
XX
:
constant
:= -
2.0
**
63
;
11
YY
:
constant
:=
2.0
**
64
;
12
13
X
:
F1
:=
XX
;
14
Y
:
F2
:=
YY
;
15
U
:
D
:=
D
'Round
(
X
/
Y
);
16
begin
17
if
U
/= -
1.0
then
18
raise
Program_Error
;
19
end if
;
20
end
Fixedpnt7
;