Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-data-codec-xml / src / test / resources / bug8745 / foo.yang
1 module foo {
2     namespace foo;
3     prefix foo;
4
5     container cont-with-attributes {
6         leaf leaf-with-attributes {
7             type string;
8         }
9
10         leaf-list leaf-list-with-attributes {
11             type string;
12         }
13
14         list list-with-attributes {
15             key list-key;
16
17             leaf list-key {
18                 type string;
19             }
20         }
21     }
22 }