Updated yangtools version to 0.5.6-SNAPSHOT.
[yangtools.git] / yang / yang-parser-impl / src / test / resources / negative-scenario / duplicity / identity.yang
1 module identity {
2     yang-version 1;
3     namespace "urn:simple.container.demo";
4     prefix "t1";
5
6     identity id1;
7
8     identity id2;
9
10     identity id1 {
11         base id2;
12     }
13
14 }