// NOTE: This will compile with -std=c++11 option
     
#include <iostream>
using namespace std;

void foo(int &&y) {
    cout << y << endl;
}

int main() {
     
    foo(42);
    return 0;
}