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 / testfile6.yang
1 module test5 {
2     yang-version 1;
3     namespace "urn:simple.container.demo";
4     prefix "t1";
5
6     typedef my-custom-int {
7         type int32 {
8             range "5..11 | 15..20";
9         }
10     }
11
12     typedef my-int-type {
13         type my-custom-int {
14             range "min..max";
15         }
16     }
17
18 }