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

struct A
{
  template<typename> static int foo();
};

template<int> struct B {};

template<typename T> void bar()
{
  B<sizeof A::foo<T>()> b1;
  B<sizeof A::foo<T>()> b2;
}