8 lines
68 B
C++
8 lines
68 B
C++
|
#include "bar.h"
|
||
|
|
||
|
int foo() {
|
||
|
int y = bar();
|
||
|
y++;
|
||
|
return y;
|
||
|
}
|