8f1093f
1 2 3 4 5 6 7 8
#include <iostream> int main() { int x = 41; int &y = x; y = 42; std::cout << "x = " << x << "\n"; }