mirror of
https://github.com/opnsense/src.git
synced 2026-04-25 16:18:54 -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
|
||
|
|
}
|