Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-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 }