Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / bugs / bug5712 / bad.yang
1 module bad {
2     namespace "urn:opendaylight:bad";
3     prefix "bad";
4
5     revision 2016-04-11 {
6         description "Initial revision";
7     }
8     typedef thing {
9         type uint32;
10     }
11     typedef thing2 {
12         type bad:thing; // Error on this line
13         //type thing;
14     }
15 }