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
compiler: give error for non-int arguments to make
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
case_null.ads
blob
0e47d4200ba0f32772078f96c3bf6701b6a9ca91
1
package
Case_Null
is
2
type
T
is
(
a
,
b
,
c
,
d
,
e
);
3
4
subtype
S
is
T
range
b
..
d
;
5
6
subtype
S1
is
S
range
a
..
d
;
7
-- Low bound out of range of base subtype.
8
9
procedure
P1
(
X
:
T
);
10
11
end
Case_Null
;