This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Fix DW_AT_import for C++ using of a base type typedef


On Thu, Jul 02, 2009 at 10:21:50AM -0400, Jason Merrill wrote:
> Testcase?

Testcase was in the mail I've posted, just not in a form of a gcc
testsuite testcase.
namespace A
{
  typedef int B;
}                                                                                                                                        

int
main ()
{
  using A::B;
  B b;
  return b;
}
I just don't think it is easy enough to check for it using -g -dA
regexps, it is something for gdb testsuite instead.

	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]