(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
auto-fn55.C
// PR c++/88825
// { dg-do compile { target c++14 } }

auto f () -> auto *
{
  int t = 0;
  return t; // { dg-error "unable to deduce" }
}