[Bug c/23895] switch and struct
neil at daikokuya dot co dot uk
gcc-bugzilla@gcc.gnu.org
Thu Sep 15 22:51:00 GMT 2005
------- Additional Comments From neil at daikokuya dot co dot uk 2005-09-15 22:50 -------
Subject: Re: switch and struct
pinskia at gcc dot gnu dot org wrote:-
>
> ------- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-15 14:22 -------
> Small testcase:
> void f(int i)
> {
> switch (i)
> {
> case 1:
> struct a *b;
> }
> }
>
> But IIRC this is invalid code as variable defintions are not allowed right after a label.
> void f(int i)
> {
> a:
> struct a *b;
> }
>
>
> In fact This is a dup of bug 7508.
Really this error message needs to be much better. Otherwise this
PR will keep coming back.
Neil.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23895
More information about the Gcc-bugs
mailing list