Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / identity / legal-chained-identity-test.yang
1 module legal-chained-identity-test {
2     namespace "urn:opendaylight.org/legal-chained-identity-test";
3     prefix lcidt;
4
5     identity first-identity {
6         base second-identity;
7     }
8
9     identity second-identity {
10         base third-identity;
11     }
12
13     identity third-identity {
14         base fourth-identity;
15     }
16
17     identity fourth-identity {
18         description "the highest identity";
19     }
20 }