PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / ptrmem29.C
blob7700c0b9722b8eca8c74c40b1fdb631d1ff5f48a
1 // PR c++/62659
3 struct D {
4   typedef int (D::*cont_func)();
5   template <cont_func> struct B;
6   template <cont_func cont_f> void wait(B<cont_f> ***);
8   int done();
9   template <bool> void fix() { wait<&D::done>(0); }