Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / negative-scenario / invalid-list-key-def.yang
1 module invalid-list-key-def {
2     yang-version 1;
3     namespace "invalid:list:key:def";
4     prefix "p";
5
6     list application-map {
7         key "rib-id";
8
9         leaf bgp-id {
10             type string;
11         }
12     }
13
14 }