view gcc/testsuite/g++.dg/warn/pr82424.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +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" }
  }
}