summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1y/auto-fn3.C
blob: 4436e84bcd3e801ab7b9e0d507926df0cd0fc16e (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do compile { target c++14 } }

bool b;
auto f()
{
  if (b)
    return 42;
  else
    return f();
}