b369295b7aaaf016b28a8ea1bdf96ebeb13453fb
[yangtools.git] / yang / yang-parser-impl / src / test / resources / list-keys-test / incorrect-list-keys-test4.yang
1 module incorrect-list-keys-test4 {
2
3     namespace "incorrect-list-keys-test4";
4     prefix "test";
5
6     grouping grp_leaf {
7         list grp_leaf {
8         }
9     }
10
11     list test1 {
12         key "grp_leaf";
13     }
14
15     augment /test1 {
16         uses grp_leaf;
17     }
18 }