Populate xpath/ hierarchy
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / resources / bugs / YT1208 / leaf.yang
1 module foo {
2   namespace foo;
3   prefix foo;
4
5   grouping grp {
6     leaf bar {
7       type string;
8       description "desc";
9     }
10   }
11
12   notification foo {
13     grouping foo {
14       uses grp;
15     }
16
17     container foo {
18       uses foo;
19     }
20   }
21 }