Fix statement prerequisites and materialization
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / resources / bugs / YT1434 / bar.yang
1 module bar {
2   namespace bar;
3   prefix bar;
4
5   container foo {
6     uses bar;
7   }
8
9   grouping bar {
10     list bar {
11       key one;
12       unique "two three";
13
14       leaf one {
15         type string;
16       }
17
18       leaf two {
19         type string;
20       }
21
22       leaf three {
23         type string;
24       }
25     }
26   }
27 }