(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
abi/
mangle63.C
// DR 850 makes this valid
// { dg-do compile { target c++11 } }

template<class T> struct A
{
  int mem;
  template<class U> decltype(U()+mem) f();
};
int i = A<int>().f<int>();

// { dg-final { scan-assembler "_ZN1AIiE1fIiEEDTplcvT__E3memEv" } }