891d6bb6b8ca46567c3ca34e6b2748a93a623824
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug8922 / foo.yang
1 module foo {
2     namespace foo;
3     prefix f;
4
5     feature my-feature;
6
7     container target {
8     }
9
10     augment "/target" {
11         if-feature my-feature;
12         uses my-grp {
13             refine "my-con" {
14                 description
15                                 "New description";
16             }
17         }
18     }
19
20     grouping my-grp {
21         container my-con {
22             if-feature my-feature;
23         }
24     }
25 }