blob: 946377e550a4c45c349879cdaec9cd98bbb0c909 [file] [log] [blame]
// 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" }
}