#include <iostream>using namespace std; int x = 100500; int main() { auto f = [&]() { cout << x << endl; }; f(); return 0;}
Standard input is empty
100500
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!