[Bug c/18963] New: static and nested declarations cause an ice
phython at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Mon Dec 13 18:44:00 GMT 2004
The following testcase ices with mainline.
static int barf ();
int foo () {
int j = 4;
auto int barf ();
int barf () {
return j;
}
return barf ();
}
static int barf () {
return 3;
}
What should the result be anyway?
--
Summary: static and nested declarations cause an ice
Product: gcc
Version: 4.0.0
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: c
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: phython at gcc dot gnu dot org
CC: gcc-bugs at gcc dot gnu dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18963
More information about the Gcc-bugs
mailing list