Ticket #204: example.bug

File example.bug, 361 bytes (added by gorzel, 13 years ago)

input file for the bug demo

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