view gcc/testsuite/g++.dg/cpp0x/decltype50.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// 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" }