summaryrefslogtreecommitdiffstats
path: root/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/main.cpp
blob: 6da34c73f1013352b523ef6dd9f18d6cb2f16b75 (plain)
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
}
OpenPOWER on IntegriCloud