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
/
sort2.adb
blob
084ad38bf45e46b831ab934d90ea3a7bbc97604a
1
-- { dg-do run }
2
3
with
sort1
;
4
procedure
sort2
is
5
begin
6
if
Sort1
(
"hello world"
) /=
" dehllloorw"
then
7
raise
Program_Error
;
8
end if
;
9
end
sort2
;