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
RISC-V: Add support for riscv-*-*.
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
object_overflow2.adb
blob
a429291e80a4e2caeb6144fcee9061b4748eebf1
1
-- { dg-do compile }
2
3
with
Interfaces
.
C
;
use
Interfaces
.
C
;
4
5
procedure
Object_Overflow2
is
6
7
procedure
Proc
(
x
:
Boolean
)
is begin null
;
end
;
8
9
type
Arr
is array
(
0
..
ptrdiff_t
'Last
)
of
Boolean
;
10
Obj
:
Arr
;
-- { dg-warning "Storage_Error" }
11
12
begin
13
Obj
(
1
) :=
True
;
14
Proc
(
Obj
(
1
));
15
end
;