When a node is going down, remove edges in both directions associated with the node.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-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 }