blob: d5ef46ff626733c88a24523462698979e2eaf42a [file] [log] [blame]
int a = 1;
int foo() {
return a;
}
int main() {
int *b = &a;
return *b + foo();
}