(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
template17.C
// PR c++/23841

template <int I>
struct S
{
  int f(int i = I) { return i; }
};

void
g ()
{
  S<(int)0.> a2;
}