Binding generator v2 - augments fix #2
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / augment-group / test-augment-uses.yang
1 module augment-test-uses {
2     prefix "foo";
3     namespace "org.test.augment.uses";
4
5     container foo1 {
6         leaf my-leaf {
7             type string;
8         }
9     }
10
11     augment /foo:foo1 {
12         uses grp;
13         leaf bar {
14             type string;
15         }
16     }
17
18     augment /foo:foo1 {
19         leaf baz {
20             type string;
21         }
22     }
23
24     grouping grp {
25         leaf my-grp-leaf {
26             type string;
27         }
28     }
29 }