Populate model/ hierarchy
[yangtools.git] / model / yang-model-export / src / test / resources / bugs / bug4504 / bar.yang
1 module bar {
2     namespace "bar";
3     prefix bar;
4
5     import foo { prefix foo; revision-date 2015-01-01; }
6
7     revision 2015-02-02 {
8         description "test";
9     }
10
11     extension my-ext {
12         argument name;
13     }
14
15     augment "/foo:target" {
16         bar:my-ext "arg";
17         leaf my-leaf {
18             type string;
19         }
20     }
21 }