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