Merge "When a node is going down, remove edges in both directions associated with...
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-parser-impl / src / test / resources / negative-scenario / testfile5.yang
1 module test5 {
2     yang-version 1;
3     namespace "urn:simple.container.demo";
4     prefix "t1";
5
6     typedef my-custom-string {
7         type string {
8             pattern "[a-k]*";
9             length "5..11";
10         }
11     }
12
13     typedef my-string-type {
14         type my-custom-string {
15             length "4..10";
16         }
17     }
18
19 }