aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-ice7.C
blob: 946377e550a4c45c349879cdaec9cd98bbb0c909 (plain)
1
2
3
4
5
6
7
8
9
// PR c++/52487
// { dg-options "-std=c++0x" }

struct A;         // { dg-error "forward declaration" }

void foo(A& a)
{
  [=](){a;};      // { dg-error "invalid use of incomplete type" }
}