diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/t1.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| @@ -1,4 +1,4 @@ -int glob; +int glob = 1;  int fibo(int n) {  	if (n <= 0) return 0; @@ -17,6 +17,7 @@ int fibo(int n) {  void main(int argc, int **argv) {  	int a = 1;  	int b = 2 + a * 3; -	fibo(5); +	glob = glob + 1; +	fibo(glob);  	// holo_dec(a);  } | 
