Expand test suite to cover uses-augment of actions
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / resources / mdsal-517 / baz.yang
1 module baz {
2   yang-version 1.1;
3   namespace "baz";
4   prefix baz;
5
6   import foo {
7     prefix foo;
8   }
9
10   container baz-cont {
11     uses foo:foo-grp {
12       augment foo-act/input {
13         leaf baz-aug-leaf {
14           type string;
15         }
16       }
17     }
18   }
19 }