source: git/Tst/Short/bug_tr738.tst @ 57f6ffd

fieker-DuValspielwiese
Last change on this file since 57f6ffd was 66417b9, checked in by Hans Schoenemann <hannes@…>, 9 years ago
fix tr. #738 (\n in argument list)
  • Property mode set to 100644
File size: 235 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// \n within argument list, next argument is "alias":
5
6proc p1(def a1, alias def a2) {}
7proc p2(def a1,
8     alias def a2) {}
9int n1 = 1;
10int n2 = 2;
11p1(n1, n2);   // this works
12p2(n1, n2);
13
14tst_status(1);$
Note: See TracBrowser for help on using the repository browser.