2017-09-13 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / lambda / lambda-ice15.C
blob7c4c18db8733813117e0feb10485026c6cc71150
1 // PR c++/67846
2 // { dg-do compile { target c++11 } }
4 class A
6   void foo ()
7   {
8     [=] { return foo; };  // { dg-error "invalid use of member function" }
9   }