c++: P0847R7 (deducing this) - xobj lambdas. [PR102609]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp2a / range-for18.C
blobe38b41cc30d2b9bca10d663ccc5e51f5b61faa4d
1 // PR c++/87152
2 // { dg-do compile }
3 // { dg-options "-std=c++2a" }
5 template<int> void foo()
7   int a[] = { 1, 1, 1 };
8   for (int i = 0; auto x : a);
9   int i;
12 void
13 bar ()
15   foo<0>();