source: git/Tst/Short/bug_tr668.tst @ f987c8

fieker-DuValspielwiese
Last change on this file since f987c8 was 0bd4b2, checked in by Hans Schoenemann <hannes@…>, 9 years ago
fix: tr. #668 (alias in imap/fetch)
  • Property mode set to 100644
File size: 387 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// resolve alias in imap/fetch
5proc p1(alias ideal i)
6{
7    def br = basering;
8    ring s = 0, x, ds;
9    ideal i = fetch(br, i);
10    setring(br);
11    return(i);
12}
13proc p2(alias ideal i)
14{
15    def br = basering;
16    ring s = 0, x, ds;
17    ideal i = imap(br, i);
18    setring(br);
19    return(i);
20}
21ring r = 0, x, dp;
22ideal i = x;
23p1(i);
24p2(i);
25
26tst_status(1);$
Note: See TracBrowser for help on using the repository browser.