source: git/Tst/Short/bug_tr735.tst @ e3e129

spielwiese
Last change on this file since e3e129 was e3e129, checked in by Hans Schoenemann <hannes@…>, 9 years ago
fix tr. #735, tr. #734 (definition of new aliases)
  • Property mode set to 100644
File size: 305 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4proc p2(alias def i) {listvar();i;}
5int n;
6p2(n);
7ring r;
8poly p=x;
9p2(p);
10
11proc p1(alias list j)
12{
13    def br = basering;
14    listvar();
15    ring s = 0, x, ds;
16    list k = fetch(br, j);
17    setring(br);
18}
19ring rr = 0, x, dp;
20list l = list(ideal(x));
21p1(l);
22
23
24tst_status(1);$
Note: See TracBrowser for help on using the repository browser.