blob: 366c69a6838033c5cf961a4ff80e09b23b5aa5dd [file] [log] [blame]
// PR debug/16261
// { dg-do compile }
namespace N
{
struct A {};
typedef A B;
}
void foo()
{
struct C
{
C(N::B) {}
};
N::B b;
C c(b);
}