[Bug c++/52953] g++-4.7.0 fails to detect function parameter name redeclarations.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52953 Paolo Carlini changed: What|Removed |Added CC|meng at g dot clemson.edu | --- Comment #2 from Paolo Carlini 2012-
[Bug c++/52953] g++-4.7.0 fails to detect function parameter name redeclarations.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52953 --- Comment #1 from meng at g dot clemson.edu 2012-04-12 21:53:36 UTC --- another example showing violation of c++11 3.3.3/4 BEGIN --- int main () { if (int a = 1) { void a (); // 1 } e