aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp1y/auto-fn24.C
blob: dfff2029c1dab053ce8a4b395c43e52c447d0a91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/60314
// { dg-do compile { target c++1y } }
// { dg-options "-g" }

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

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