xref: /llvm-project/lldb/test/API/lang/cpp/rvalue-references/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <stdio.h>
2 
foo(int && i)3 void foo (int &&i)
4 {
5   printf("%d\n", i); // breakpoint 1
6 }
7 
main()8 int main()
9 {
10   foo(3);
11   return 0; // breakpoint 2
12 }
13