Commit 500a9f27 by Eric Botcazou Committed by Eric Botcazou

* g++.dg/debug/typedef3.C: New test.

From-SVN: r93852
parent 7836a61f
2005-01-18 Eric Botcazou <ebotcazou@libertysurf.fr>
* g++.dg/debug/typedef3.C: New test.
2005-01-18 Andrew Pinski <pinskia@physics.uc.edu> 2005-01-18 Andrew Pinski <pinskia@physics.uc.edu>
PR c/19472 PR c/19472
......
// 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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment