------- Additional Comments From reichelt at gcc dot gnu dot org 2004-11-08 21:49 ------- Here's a testcase without templates:
====================
namespace N
{
struct A {};
typedef A B;
}
void foo()
{
struct C
{
C(N::B) {}
};
N::B b;
C c(b);
}
====================
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16261
