Disable uses/augment statements of unsupported paths
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / resources / bugs / YT1393 / bar.yang
1 module bar {
2   namespace bar;
3   prefix bar;
4
5   feature foo;
6
7   grouping foo {
8     container foo {
9       if-feature foo;
10       container bar;
11     }
12   }
13
14   uses foo {
15     refine foo/bar {
16       description desc;
17     }
18   }
19
20   container baz {
21     uses foo {
22       refine foo {
23         description desc;
24       }
25     }
26   }
27 }