#include <iostream>
using namespace std;
#include <cstdlib>

int main() {
    const int m = 42;
    [] {std::cout<<m<<std::endl;    }(); // OK

    const int n = std::rand();
    [] { std::cout<<n<<std::endl; }(); // error: 'n' is not captured
	
	return 0;
}