Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Author

anonymous

almost 5 years ago

Language

C++

Compiler

gcc 7.2.0

Options
Warnings
Don't Use Boost
C++11
no pedantic

Author

anonymous

almost 5 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
Exit Code:
0