summaryrefslogtreecommitdiff
path: root/test/Debugger/funccall.c
blob: cc363858ac8c367e476dd35baecf18a80139e807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

static int q;

void foo() {
	int t = q;
	q = t + 1;
}
int main() {
	q = 0;
	foo();
	q = q - 1;

	return q;
}