DEBSOURCES
Skip Quicknav
sources / llvm-toolchain-6.0 / 1%3A6.0.1-10 / lldb / packages / Python / lldbsuite / test / lang / cpp / rvalue-references / main.cpp
123456789101112
#include <stdio.h> void foo (int &&i) { printf("%d\n", i); // breakpoint 1 } int main() { foo(3); return 0; // breakpoint 2 }