Implemented ordering of yang module data nodes. Added Comparators utility class.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / test / resources / negative-scenario / duplicity / container-list.yang
1 module container-list {
2     yang-version 1;
3     namespace "urn:simple.container.demo";
4     prefix "t1";
5
6     container foo {
7         description "foo container";
8     }
9
10     list foo {
11         description "foo list";
12     }
13
14 }