brintos

brintos / llvm-project-archived public Read only

0
0
Text · 134 B · 6da34c7 Raw
13 lines · cpp
1#include <stdio.h>2 3void foo (int &&i)4{5  printf("%d\n", i); // breakpoint 16}7 8int main()9{10  foo(3);11  return 0; // breakpoint 212}13