Merge "Package names for enclosed Types of TOs were changed to fully qualified. Fully...
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / test / resources / negative-scenario / duplicity / typedef.yang
1 module typedef {
2     yang-version 1;
3     namespace "urn:simple.container.demo";
4     prefix "t1";
5
6     typedef int-ext {
7         type int32;
8     }
9
10     typedef int-ext {
11         type int16;
12     }
13
14 }