Language
C++
Compiler
gcc 7.2.0
Options
Warnings
Don't Use Boost
C++11
no pedantic
$ g++ prog.cc -Wall -Wextra -std=c++11
10
11
12
13
Exit Code:
0
Author
anonymous
over 4 years ago
C++
gcc 7.2.0
Author
anonymous
over 4 years ago
$ g++ prog.cc -Wall -Wextra -std=c++11
prog.cc: In function 'int main()':
prog.cc:13:38: warning: capture of variable 'global' with non-automatic storage duration
const auto moreIncreaseGlobal = [global]() noexcept { ++global; };
^~~~~~
prog.cc:3:5: note: 'int global' declared here
int global = 10;
^~~~~~
10
11
12
13