(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
pr35240.C
// PR c++/35240
// { dg-do compile }

template<int> struct A {};

template<int N> A<sizeof(new int[N][N])> foo();

void bar()
{
  foo<1>();
}