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
/
quote.adb
blob
4b12c9fb979da92c1e69f8c7cd383d541959882f
1
-- { dg-do run }
2
3
with
GNAT
.
Regpat
;
use
GNAT
.
Regpat
;
4
procedure
Quote
is
5
begin
6
if
Quote
(
".+"
) /=
"
\.\+
"
then
7
raise
Program_Error
;
8
end if
;
9
end
Quote
;