source: git/Tst/Short/bug_tr307.tst @ 09cb443

spielwiese
Last change on this file since 09cb443 was a95869, checked in by Hans Schoenemann <hannes@…>, 13 years ago
test tr.307 git-svn-id: file:///usr/local/Singular/svn/trunk@13795 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 342 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4proc huhu(int i)
5{
6 print(i);
7}
8proc hihi()
9{
10 return(huhu);
11}
12hihi()(1);
13
14list ll=(huhu);
15proc(ll[1])(2);
16def ll_1=ll[1];
17ll_1(3);
18
19huhu;
20hihi;
21proc huhu1()
22{
23 print(17);
24}
25proc hihi1(int i)
26{
27 return(huhu1);
28}
29proc(hihi1(1))();
30
31ll=(huhu1);
32proc(ll[1])();
33def ll_2=ll[1];
34ll_2();
35
36hihi1;
37huhu1;
38
39tst_status(1);$
Note: See TracBrowser for help on using the repository browser.