mirror of
https://github.com/opnsense/src.git
synced 2026-03-21 02:10:09 -04:00
13 lines
134 B
C++
13 lines
134 B
C++
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
void foo (int &&i)
|
||
|
|
{
|
||
|
|
printf("%d\n", i); // breakpoint 1
|
||
|
|
}
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
foo(3);
|
||
|
|
return 0; // breakpoint 2
|
||
|
|
}
|