summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-ice27.C
blob: 04c44a3b57f6d70ee65aa476b295c62f3cbbb774 (plain)
1
2
3
4
5
6
7
8
// PR c++/84446
// { dg-do compile { target c++11 } }

template<int> void foo()
{
  int i,
  i = [] { virtual }();  // { dg-error "redeclaration|expected" }
}