Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-data-codec-gson / src / test / resources / leafref / yang / leafref-module.yang
1 module leafref-module {
2     namespace "leafref:module";
3
4     prefix "lfrfmo";
5
6     import augment-leafref-module { prefix augleafref; revision-date 2014-12-16; }
7     revision 2013-11-18 {
8     }
9
10     container cont {
11         leaf lf1 {
12             type int32;
13         }
14         leaf lf2 {
15             type leafref {
16                 path "/cont/lf1";
17             }
18         }
19         leaf lf4 {
20             type augleafref:leafreftype;
21         }
22     }
23 }