afdf9a225031cead366396cfdbb1c8662c59b11f
[yangtools.git] / yang / yang-parser-impl / src / test / resources / list-keys-test / incorrect-list-keys-test.yang
1 module incorrect-list-keys-test {
2
3     namespace "incorrect-list-keys-test";
4     prefix "test";
5
6     list test1 {
7         key "test1_key1 test1_key2";
8         leaf test1_key1 {
9             type string;
10         }
11         list test1_key2 {
12             leaf test1_key2 {
13                 type string;
14             }
15         }
16     }
17 }