Refactor augment generator linkage
[mdsal.git] / binding / mdsal-binding-generator / src / test / resources / mdsal715 / test-module-4.yang
1 module test-module-4 {
2   namespace "test-module-4";
3   prefix "tm4";
4
5   import test-module-1 {
6       prefix tm1;
7   }
8
9   augment "/tm1:test-cont/tm1:test-list/tm1:used-cont-1/tm1:used-cont-2" {
10     container augmented-cont-1 {
11       list augmented-list;
12     }
13   }
14
15   augment "/tm1:test-cont/tm1:test-list/tm1:used-cont-1/tm1:used-cont-2/tm4:augmented-cont-1/tm4:augmented-list" {
16     container augmented-cont-2;
17   }
18 }