Generate implementedInterfaces method for DataRoot
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / resources / mdsal573.yang
1 module mdsal573 {
2   namespace "mdsal573";
3   prefix l;
4
5   grouping g1 {
6     container c1 {
7       leaf l1 {
8         type string;
9       }
10     }
11   }
12
13   grouping g2 {
14     uses g3;
15
16     container c2 {
17       leaf l2 {
18         type string;
19       }
20     }
21   }
22
23   grouping g3 {
24     container c3 {
25       leaf l3 {
26         type string;
27       }
28     }
29   }
30
31
32   uses g1;
33   uses g2;
34 }