1#include <stdio.h>2 3void foo (int &&i)4{5 printf("%d\n", i); // breakpoint 16}7 8int main()9{10 foo(3);11 return 0; // breakpoint 212}13