Fix unique argument parser
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / bugs / YT893 / cr.yang
1 module cr {
2     namespace "urn:cr";
3     prefix cr;
4
5     list foo {
6         unique "a\rb";
7
8         leaf a {
9             type string;
10         }
11         leaf b {
12             type string;
13         }
14     }
15 }