Fix sorting in Contributors.html
[official-gcc.git] / gcc / testsuite / g++.dg / cpp2a / lambda-targ1.C
blob07fa6f9bc194eeeea9ce63d291358ada0d0d5c41
1 // PR c++/103807
2 // { dg-do compile { target c++20 } }
4 template<auto = +[]{}>
5 struct A { };
7 A x;
9 int main() {
10   A y;