blob: bbc2a1ca52d471bdcb126dc392106ddbbcff9784 [file] [log] [blame]
// Test that capture by copy uses direct-initialization.
// { dg-options "-std=c++0x" }
struct A
{
A();
explicit A(const A&);
};
int main()
{
A a;
[a]{};
}