(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
auto-fn24.C
// PR c++/60314
// { dg-do compile { target c++14 } }
// { dg-options "-g" }

// fine
decltype(auto) qux() { return 42; }

struct foo
{
  // also ICEs if not static 
  static decltype(auto) bar()
  { return 42; }
};