Populate xpath/ hierarchy
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / resources / bugs / YT971 / test.yang
1 module test {
2     namespace test;
3     prefix test;
4     yang-version 1.1;
5
6     revision 2019-03-25;
7
8     container some-container {
9         leaf some-leaf {
10             description "Some string that ends with a backslash (with escape backslash too) \\";
11             type int16;
12         }
13         leaf some-other-leaf {
14             description "Some string after the double backslash";
15             type int32;
16         }
17     }
18 }