Ticket #204: example.bug
File example.bug, 361 bytes (added by , 13 years ago) |
---|
Line | |
---|---|
1 | |
2 | LIB"bug.lib"; |
3 | int i =1; |
4 | proc callobj(def obj) {return(obj);} |
5 | ; |
6 | example callbug; |
7 | listvar(); // local objects from example part no longer exist |
8 | ; |
9 | ring R=0,x,dp; |
10 | example callbug; |
11 | listvar(); // local objects from example part no longer exist |
12 | ; |
13 | callobj(x); |
14 | example callbug; |
15 | listvar(); // local objects from example part still exist |
16 | ; |
17 | |
18 |