comparison gcc/testsuite/g++.dg/cpp0x/lambda/lambda-err2.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
4 int main() 4 int main()
5 { 5 {
6 auto a = []() { return true; }; 6 auto a = []() { return true; };
7 auto b = []() { return a(); }; // { dg-error "'a' is not captured" } 7 auto b = []() { return a(); }; // { dg-error "'a' is not captured" }
8 int c, d; 8 int c, d;
9 while (b() && c < d) // { dg-error "could not convert" } 9 while (b() && c < d)
10 { 10 {
11 } 11 }
12 } 12 }