aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/access01.C
blob: 55c951f97d6023b88041b9baea6a9ea8448269bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/49042
// { dg-do compile { target c++11 } }

template <class T>
class A
{
  T p;
public:
  template <class U> auto f() -> decltype(+p) { }
};

int main()
{
  A<int>().f<int>();
}