aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/decltype50.C
blob: dc3332ac5253f33f38878a64f9d05577454e4b5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/52597
// { dg-require-effective-target c++11 }

struct A {
   int zip();

   decltype(zip) bar0; // { dg-error "invalid use of non-static member function" }
   void bar1() {
     typedef decltype(this->A::zip) x; // { dg-error "invalid use of non-static member function" }
   }
   void bar2() {
     typedef decltype(A::zip) x; // { dg-error "invalid use of non-static member function" }
   }
};

typedef decltype(A().zip) x; // { dg-error "invalid use of non-static member function" }

// { dg-prune-output "invalid type in declaration" }