Bug 5101: Status deprecated must not be propagated via uses statement
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug5101 / foo.yang
1 module foo {
2     namespace "foo";
3     prefix foo;
4
5     revision 2016-01-29 {
6         description "test";
7     }
8
9     grouping my-grouping {
10         status deprecated;
11         container my-container {
12             status deprecated;
13         }
14     }
15
16     container root {
17         uses my-grouping;
18     }
19
20     uses my-grouping;
21 }