(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
const4.C
// PR c++/48657

template<unsigned> struct A { typedef int T; };

template<unsigned> void f()
{
  const unsigned D = 4;
  A<D>::T t;
}