Added 'code-generator' and 'model' projects from controller project.
[yangtools.git] / yang-parser-impl / src / test / resources / negative-scenario / duplicity / container.yang
1 module container {
2     yang-version 1;
3     namespace "urn:simple.container.demo";
4     prefix "t1";
5
6     container foo {
7         description "foo 1";
8     }
9
10     container foo {
11         description "foo 2";
12     }
13
14 }