Fix path namespace resolution
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / resources / mdsal-499 / child.yang
1 submodule child {
2   belongs-to parent {
3     prefix par;
4   }
5
6   import imported {
7     prefix imp;
8   }
9
10   container cont {
11     leaf leaf1 {
12       type leafref {
13         path "/imp:root/imp:leaf1";
14       }
15     }
16     leaf leaf2 {
17       type imp:foo;
18     }
19   }
20 }