Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / cpp / rvalue-references / main.cpp
blob6da34c73f1013352b523ef6dd9f18d6cb2f16b75
1 #include <stdio.h>
3 void foo (int &&i)
5 printf("%d\n", i); // breakpoint 1
8 int main()
10 foo(3);
11 return 0; // breakpoint 2