Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
134 B
C++
Raw Permalink Normal View History

#include <stdio.h>
void foo (int &&i)
{
printf("%d\n", i); // breakpoint 1
}
int main()
{
foo(3);
return 0; // breakpoint 2
}