You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07: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
|
||
|
|
}
|