e56e1f790c21aec713d817a6d392211f0d92fa6e
[yangtools.git] / yang / yang-parser-impl / src / test / resources / semantic-statement-parser / key-arg-parsing / key-comp-duplicate.yang
1 module key-comp-duplicate {
2         namespace root;
3         prefix root;
4
5         list comp {
6                 key "key1 key2 key2";
7                 container key1 {
8         }
9                 container key2 {
10         }
11                 container key3 {
12         }
13         }
14 }