repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
noncompile
/
20020220-1.c
blob
aa57dc3d4932ab93df176805abea96d545c1894f
1
/* PR c++/5713
2
Test that there are no ICEs after redeclaration error. */
3
4
int
foo
(
const char
*,
const char
*);
5
6
void
bar
(
void
)
7
{
8
const char
*
s
=
"bar"
;
9
int
i
;
/* { dg-error "previous declaration" } */
10
int
size
=
2
;
11
int
i
=
foo
(
s
,
s
+
size
);
/* { dg-error "redeclaration of" } */
12
}