aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/decltype51.C
blob: 9ab41467a6113e85392b96b9491e0e9fec591f11 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/53721
// { dg-require-effective-target c++11 }

struct A
{
  void f() {};
  auto g() -> decltype(this->f())
  {
  }
};