lambda-conv3.C 319 Bytes
Newer Older
1 2 3 4
// Conversion to a function pointer uses a generic thunk, which doesn't
// work properly for variadics.  Make sure that we can still use the lambda
// normally.

5
// { dg-do compile { target c++11 } }
6 7 8 9 10 11 12

void f()
{
  auto l = [](...){};
  void (*p1)(...) = l;		// { dg-bogus "sorry" "" { xfail *-*-* } }
  l();				// OK
}