main.cpp 134 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 #include <stdio.h> void foo (int &&i) { printf("%d\n", i); // breakpoint 1 } int main() { foo(3); return 0; // breakpoint 2 }