view gcc/testsuite/g++.dg/warn/pr82424.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-additional-options "-Wshadow=compatible-local" }

// pr c++/82424 we were trying to convert between dependent types.
template <typename T> class a
{
  struct b;
  template <typename, typename> void c ();
};
template <typename T>
template <typename, typename>
void
a<T>::c ()
{
  typedef typename T::b b; // Don't go looking inside the typename
  T thing;
  {
    T thing; // { dg-warning "shadows a previous local" }
  }
}