Propagate grouping inference flag
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / resources / mdsal-519 / specific-grouping-leafref.yang
1 module specific-grouping-leafref {
2
3   namespace "odl:test:leafref:grouping:nested";
4   prefix "gl";
5   revision 2020-02-28;
6
7   container container-top {
8     leaf leaf-1 {
9       type string;
10     }
11     uses grouping-leafref;
12   }
13
14   grouping grouping-leafref {
15     container nested-container {
16       leaf leafref-1 {
17         type leafref {
18           path "../leafref-2";
19         }
20       }
21
22       leaf leafref-2 {
23         type leafref {
24           path "../../leaf-1";
25         }
26       }
27     }
28   }
29
30 }