PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / concepts / pr60052.C
blobc5bc28efd07f1b7ba5524a30c965c3fbde5efebe
1 // PR c++/60052
2 // { dg-do compile { target c++14 } }
3 // { dg-additional-options "-fconcepts" }
5 struct A
7   void foo(auto);
8 };
10 void A::foo(auto) {}
12 struct B
14   void bar(auto);