c++: P0847R7 (deducing this) - xobj lambdas. [PR102609]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp2a / concepts-pr67685.C
blob82f068e50e234a01b2338ac52bbc6b0ad6380400
1 // PR c++/67685
2 // { dg-do compile { target c++14 } }
3 // { dg-additional-options "-fconcepts" }
5 void f(auto i) {requires {i;};}
7 int main() {f(0);}