brintos

brintos / llvm-project-archived public Read only

0
0
Text · 130 B · 76a22a5 Raw
10 lines · cpp
1#include "foo.h"2 3int call_foo2() { return foo2(); }4// BR_Between5int6main() // !BR_main7{8  return call_foo1() + call_foo2();9}10