Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / semantic-statement-parser / key-arg-parsing / key-simple-and-comp.yang
1 module key-simple-and-comp {
2         namespace root;
3         prefix root;
4
5         list simple {
6                 key "key1";
7                 container key1 {
8                 }
9         }
10
11         list comp {
12                 key "key1 key2 key3";
13                 container key1 {
14         }
15                 container key2 {
16         }
17                 container key3 {
18         }
19         }
20 }