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