Fix augmentation pointing to a grouping action's input
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / resources / mdsal-517 / foo.yang
1 module foo {
2   yang-version 1.1;
3   namespace "foo";
4   prefix foo;
5
6   grouping foo-grp {
7     action foo-act {
8       input {
9         leaf foo-action-input-leaf {
10           type empty;
11         }
12       }
13     }
14   }
15
16   container foo-cont {
17     uses foo:foo-grp;
18   }
19 }